Ghost/ghost/admin/tests/test-helper.js

15 lines
331 B
JavaScript
Raw Normal View History

import Application from '../app';
import config from '../config/environment';
import registerWaiter from 'ember-raf-scheduler/test-support/register-waiter';
import {setApplication} from '@ember/test-helpers';
2015-02-13 07:22:32 +03:00
setApplication(Application.create(config.APP));
registerWaiter();
mocha.setup({
timeout: 15000,
slow: 500
});