| layout |
page-api |
| title |
QUnit.config.modules |
| excerpt |
List of defined test modules. |
| groups |
|
| redirect_from |
|
| version_added |
1.16.0 |
List of defined test modules.
This property is exposed under QUnit.config for use by plugins and other integrations. It returns an array of internal Module objects, one for each call to QUnit.module().
Before accessing this property, wait for the QUnit.on('runStart') event, or use a QUnit.begin() callback.
The following properties are considered publicly supported:
QUnit.on('runStart', () => {
console.log(QUnit.config.modules.map(mod => mod.name));
});