We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f101ed commit 8834370Copy full SHA for 8834370
1 file changed
addon-test-support/-private/ember-exam-test-loader.js
@@ -60,7 +60,7 @@ export default class EmberExamTestLoader extends TestLoader {
60
*
61
* @method loadModules
62
*/
63
- loadModules({ availableModules } = {}) {
+ async loadModules({ availableModules } = {}) {
64
const loadBalance = this._urlParams.get('loadBalance');
65
const browserId = this._urlParams.get('browser');
66
const modulePath = this._urlParams.get('modulePath');
@@ -119,7 +119,8 @@ export default class EmberExamTestLoader extends TestLoader {
119
);
120
121
if (this._availableModules) {
122
- return this.loadAvailableModules();
+ await this.loadAvailableModules();
123
+ return;
124
}
125
126
/**
0 commit comments