aboutsummaryrefslogtreecommitdiff
path: root/javascript/tests/test-helper.js
diff options
context:
space:
mode:
authoralexwl <alexey.a.kiryushin@gmail.com>2018-10-02 13:17:04 +0300
committeralexwl <alexey.a.kiryushin@gmail.com>2018-10-02 13:17:04 +0300
commitcf2c56c7061b7ed40fdd3b40a352ddb9c9b7371f (patch)
treeb1de9ada0f1b1cb064e3a9e0d4042d1f519085bd /javascript/tests/test-helper.js
Initial commit
Diffstat (limited to 'javascript/tests/test-helper.js')
-rw-r--r--javascript/tests/test-helper.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/javascript/tests/test-helper.js b/javascript/tests/test-helper.js
new file mode 100644
index 0000000..0382a84
--- /dev/null
+++ b/javascript/tests/test-helper.js
@@ -0,0 +1,8 @@
+import Application from '../app';
+import config from '../config/environment';
+import { setApplication } from '@ember/test-helpers';
+import { start } from 'ember-qunit';
+
+setApplication(Application.create(config.APP));
+
+start();