We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9292e6c commit df0d275Copy full SHA for df0d275
2 files changed
test-packages/ember-cli-fastboot-testing-app/tests/index.html
@@ -21,6 +21,9 @@
21
{{content-for "body"}}
22
{{content-for "test-body"}}
23
24
+ <div id="ember-testing">
25
+ </div>
26
+
27
<script src="/testem.js" integrity=""></script>
28
<script src="{{rootURL}}assets/vendor.js"></script>
29
<script src="{{rootURL}}assets/test-support.js"></script>
test-packages/ember-cli-fastboot-testing-app/tests/test-helper.js
@@ -2,6 +2,10 @@ 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 * as QUnit from 'qunit';
6
+import { setup } from 'qunit-dom';
7
8
+setup(QUnit.assert);
9
10
setApplication(Application.create(config.APP));
11
0 commit comments