QUnit.hooks
version added: 2.18.0.
Description
QUnit.hooks.beforeEach( callback )
QUnit.hooks.afterEach( callback )
Register a global callback to run before or after every test.
parameter | description |
---|---|
callback (function) | Callback to execute. Called with an assert argument. |
This is the equivalent of adding a hook in all modules, and all tests, including global tests that are not grouped in a module.
As with module hooks, global hooks may be async functions or return a Promise, which will be waited for before QUnit continues executing tests. Each global hook also has access to the same assert
object and test context as the QUnit.test that the hook is running for.
For more details about hooks, refer to QUnit.module ยง Hooks.
Examples
QUnit.hooks.beforeEach(function () {
this.app = new MyApp();
});
QUnit.hooks.afterEach(async function (assert) {
assert.deepEqual([], await this.app.getErrors(), 'MyApp errors');
MyApp.reset();
});