aboutsummaryrefslogtreecommitdiff
path: root/javascript/tests/test-helper.js
blob: 0382a848dd0788cd1836394b6651f635b6bec8e7 (plain) (blame)
1
2
3
4
5
6
7
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();