Skip to content

Commit bf99e9b

Browse files
committed
test: remove .skip for plugin loader tests
1 parent 2167c70 commit bf99e9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/plugin/plugin.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ describe('loading plugins from packages', function () {
2323
spawnSync('npm', ['install'], { cwd: testPackagePath, timeout: 5000 });
2424
});
2525

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 () {
2727
const loader = new PluginLoader([join(testPackagePath, 'default-export.js')]);
2828
await loader.load();
2929
expect(loader.pushPlugins.length).to.equal(1);
3030
expect(loader.pushPlugins.every((p) => isCompatiblePlugin(p))).to.be.true;
3131
expect(loader.pushPlugins[0]).to.be.an.instanceOf(PushActionPlugin);
3232
}).timeout(10000);
3333

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 () {
3535
const loader = new PluginLoader([join(testPackagePath, 'multiple-export.js')]);
3636
await loader.load();
3737
expect(loader.pushPlugins.length).to.equal(1);
@@ -45,7 +45,7 @@ describe('loading plugins from packages', function () {
4545
expect(loader.pullPlugins[0]).to.be.instanceOf(PullActionPlugin);
4646
}).timeout(10000);
4747

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 () {
4949
const loader = new PluginLoader([join(testPackagePath, 'subclass.js')]);
5050
await loader.load();
5151
expect(loader.pushPlugins.length).to.equal(1);

0 commit comments

Comments
 (0)