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 4a9c17b commit 508b40fCopy full SHA for 508b40f
config/environment.js
@@ -55,6 +55,7 @@ module.exports = function(environment) {
55
ENV.APP.LOG_VIEW_LOOKUPS = false;
56
57
ENV.APP.rootElement = '#ember-testing';
58
+ ENV.APP.autoboot = false;
59
}
60
61
if (environment === 'production') {
tests/test-helper.js
@@ -1,9 +1,10 @@
1
import Application from '../app';
2
+import config from '../config/environment';
3
import { setApplication } from '@ember/test-helpers';
4
import { start } from 'ember-qunit';
5
import loadEmberExam from 'ember-exam/test-support/load';
6
-setApplication(Application.create({ autoboot: false }));
7
+setApplication(Application.create(config.APP));
8
9
loadEmberExam();
10
start();
0 commit comments