@@ -45,7 +45,7 @@ describe('loaders', () => {
45
45
loaders . loadParser ( { 'parser' : PARSER_PATH } )
46
46
. then ( parser => assert . equal ( typeof parser , 'function' ) ) ) ;
47
47
48
- it . skip ( 'loads custom parser when file (absolute path) is specified' , ( ) =>
48
+ it ( 'loads custom parser when file (absolute path) is specified' , ( ) =>
49
49
loaders . loadParser ( { 'parser' : PARSER_PATH_ABSOLUTE } )
50
50
. then ( parser => assert . equal ( typeof parser , 'function' ) ) ) ;
51
51
@@ -89,15 +89,15 @@ describe('loaders', () => {
89
89
loaders . loadPlugin ( { 'layout' : TEMPLATE_PATH } )
90
90
. then ( plugin => assert . equal ( typeof plugin , 'function' ) ) ) ;
91
91
92
- it . skip ( 'loads custom handlebars plugin when file (absolute path) is specified' , ( ) =>
92
+ it ( 'loads custom handlebars plugin when file (absolute path) is specified' , ( ) =>
93
93
loaders . loadPlugin ( { 'layout' : TEMPLATE_PATH_ABSOLUTE } )
94
94
. then ( plugin => assert . equal ( typeof plugin , 'function' ) ) ) ;
95
95
96
96
it ( 'load custom plugin via JavaScript file' , ( ) =>
97
97
loaders . loadPlugin ( { 'layout' : PLUGIN_PATH } )
98
98
. then ( plugin => assert . equal ( typeof plugin , 'function' ) ) ) ;
99
99
100
- it . skip ( 'load custom plugin via JavaScript file (absolute path)' , ( ) =>
100
+ it ( 'load custom plugin via JavaScript file (absolute path)' , ( ) =>
101
101
loaders . loadPlugin ( { 'layout' : PLUGIN_PATH_ABSOLUTE } )
102
102
. then ( plugin => assert . equal ( typeof plugin , 'function' ) ) ) ;
103
103
0 commit comments