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