test: no need to create fake interstitial as NodeBB comes with some by default

isekai-main
Julian Lam 3 years ago
parent a9645475fe
commit cb69934ad0

@ -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();
});
});

Loading…
Cancel
Save