diff --git a/test/controllers.js b/test/controllers.js index 5696ea7073..d3820d743e 100644 --- a/test/controllers.js +++ b/test/controllers.js @@ -302,16 +302,6 @@ describe('Controllers', () => { }); it('should load /register/complete', (done) => { - function hookMethod(data, next) { - data.interstitials.push({ template: 'topic.tpl', data: {} }); - next(null, data); - } - - plugins.hooks.register('myTestPlugin', { - hook: 'filter:register.interstitial', - method: hookMethod, - }); - const data = { username: 'interstitial', password: '123456', @@ -347,7 +337,6 @@ describe('Controllers', () => { assert(body.sections); assert(body.errors); assert(body.title); - plugins.hooks.unregister('myTestPlugin', 'filter:register.interstitial', hookMethod); done(); }); });