You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test-helper.js 228B

12345678
  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. setApplication(Application.create(config.APP));
  6. start();