mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
a310280eff
no issue - increases the timeout because acceptance tests sometimes hit the limit which then caused a knock-on effect through other tests - fix settings/navigation acceptance tests where it picked up previous test failure error messages - fix user model unit tests so that `expect` is always called _after_ the runloop has finished handling property updates
12 lines
212 B
JavaScript
12 lines
212 B
JavaScript
import resolver from './helpers/resolver';
|
|
import { setResolver } from 'ember-mocha';
|
|
|
|
setResolver(resolver);
|
|
|
|
/* jshint ignore:start */
|
|
mocha.setup({
|
|
timeout: 5000,
|
|
slow: 500
|
|
});
|
|
/* jshint ignore:end */
|