Ghost/ghost/admin/tests/helpers/destroy-app.js

11 lines
242 B
JavaScript
Raw Normal View History

import {run} from '@ember/runloop';
2015-11-30 20:21:39 +03:00
export default function destroyApp(application) {
// this is required to fix "second Pretender instance" warnings
if (server) {
server.shutdown();
}
run(application, 'destroy');
2015-11-30 20:21:39 +03:00
}