This commit is contained in:
Ibby Hadeed 2017-05-16 05:49:09 -04:00
parent a7f7b26a76
commit c6feaafcca

View File

@ -67,11 +67,8 @@ describe('Regular Decorators', () => {
let plugin: TestPlugin; let plugin: TestPlugin;
beforeEach(() => { beforeEach(() => {
plugin = new TestPlugin(); plugin = new TestPlugin();
definePlugin(); definePlugin();
}); });
describe('Plugin', () => { describe('Plugin', () => {
@ -170,7 +167,7 @@ describe('Regular Decorators', () => {
.catch(e => { .catch(e => {
expect(e).toEqual(ERR_PLUGIN_NOT_INSTALLED.error); expect(e).toEqual(ERR_PLUGIN_NOT_INSTALLED.error);
done(); done();
}) });
}); });
}); });