QUnit.moduleStart( callback )
Register a callback to fire whenever a module begins. The callback can return a promise that will be waited for before the next callback is handled.
| parameter | description |
|---|---|
| callback (function) | Callback to execute. Provides a single argument with the callback details object |
Callback details: callback( details: { name } )
| parameter | description |
|---|---|
name (string) |
Name of the next module to run |
Example
Register a callback that logs the module name
QUnit.moduleStart(function( details ) {
console.log( "Now running: ", details.name );
});
Using modern syntax:
QUnit.moduleStart( ( { name } ) => {
console.log( `Now running: ${name}` );
});
Returning a promise:
QUnit.moduleStart( () => {
return new Promise(function(resolve, reject) {
// do some async work
resolve();
});
});