mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
2942523d27
no issue - removes some deprecated babel plugins from our dependencies
21 lines
468 B
JavaScript
21 lines
468 B
JavaScript
import Application from '../app';
|
|
import config from '../config/environment';
|
|
import registerWaiter from 'ember-raf-scheduler/test-support/register-waiter';
|
|
import start from 'ember-exam/test-support/start';
|
|
import {setApplication} from '@ember/test-helpers';
|
|
|
|
import chai from 'chai';
|
|
import chaiDom from 'chai-dom';
|
|
chai.use(chaiDom);
|
|
|
|
setApplication(Application.create(config.APP));
|
|
|
|
registerWaiter();
|
|
|
|
mocha.setup({
|
|
timeout: 15000,
|
|
slow: 500
|
|
});
|
|
|
|
start();
|