@@ -23,15 +23,15 @@ describe('loading plugins from packages', function () {
23
23
spawnSync ( 'npm' , [ 'install' ] , { cwd : testPackagePath , timeout : 5000 } ) ;
24
24
} ) ;
25
25
26
- it . skip ( 'should load plugins that are the default export (module.exports = pluginObj)' , async function ( ) {
26
+ it ( 'should load plugins that are the default export (module.exports = pluginObj)' , async function ( ) {
27
27
const loader = new PluginLoader ( [ join ( testPackagePath , 'default-export.js' ) ] ) ;
28
28
await loader . load ( ) ;
29
29
expect ( loader . pushPlugins . length ) . to . equal ( 1 ) ;
30
30
expect ( loader . pushPlugins . every ( ( p ) => isCompatiblePlugin ( p ) ) ) . to . be . true ;
31
31
expect ( loader . pushPlugins [ 0 ] ) . to . be . an . instanceOf ( PushActionPlugin ) ;
32
32
} ) . timeout ( 10000 ) ;
33
33
34
- it . skip ( 'should load multiple plugins from a module that match the plugin class (module.exports = { pluginFoo, pluginBar })' , async function ( ) {
34
+ it ( 'should load multiple plugins from a module that match the plugin class (module.exports = { pluginFoo, pluginBar })' , async function ( ) {
35
35
const loader = new PluginLoader ( [ join ( testPackagePath , 'multiple-export.js' ) ] ) ;
36
36
await loader . load ( ) ;
37
37
expect ( loader . pushPlugins . length ) . to . equal ( 1 ) ;
@@ -45,7 +45,7 @@ describe('loading plugins from packages', function () {
45
45
expect ( loader . pullPlugins [ 0 ] ) . to . be . instanceOf ( PullActionPlugin ) ;
46
46
} ) . timeout ( 10000 ) ;
47
47
48
- it . skip ( 'should load plugins that are subclassed from plugin classes' , async function ( ) {
48
+ it ( 'should load plugins that are subclassed from plugin classes' , async function ( ) {
49
49
const loader = new PluginLoader ( [ join ( testPackagePath , 'subclass.js' ) ] ) ;
50
50
await loader . load ( ) ;
51
51
expect ( loader . pushPlugins . length ) . to . equal ( 1 ) ;
0 commit comments