0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Updated test-helper.js to use explicit start() call

no issue

- this was a breaking change introduced in ember-mocha@0.15.0 https://github.com/emberjs/ember-mocha/blob/master/CHANGELOG.md#v0150-2019-05-11
This commit is contained in:
Kevin Ansfield 2019-05-13 10:06:15 +01:00
parent 0eaf9e0247
commit 67360b5f71

View file

@ -3,6 +3,7 @@ import config from '../config/environment';
import loadEmberExam from 'ember-exam/test-support/load';
import registerWaiter from 'ember-raf-scheduler/test-support/register-waiter';
import {setApplication} from '@ember/test-helpers';
import {start} from 'ember-mocha';
loadEmberExam();
@ -15,3 +16,4 @@ mocha.setup({
slow: 500
});
start();