UNPKG

629 BJavaScriptView Raw
1/*
2 used to determine if the application should be booted immediately when `app-name.js` is evaluated
3 when `runningTests` the `app-name.js` file will **not** import the applications `app/app.js` and
4 call `Application.create(...)` on it. Additionally, applications can opt-out of this behavior by
5 setting `autoRun` to `false` in their `ember-cli-build.js`
6*/
7runningTests = true;
8
9/*
10 This file overrides a file built into ember-cli's build pipeline and prevents
11 this built-in `Testem.hookIntoTestFramework` invocation:
12
13 https://github.com/ember-cli/ember-cli/blob/v3.20.0/lib/broccoli/test-support-suffix.js#L3-L5
14*/