project/tests/helpers/destroy-app.js

6 lines
117 B
JavaScript
Raw Normal View History

2016-04-06 15:53:06 +00:00
import Ember from 'ember';
export default function destroyApp(application) {
Ember.run(application, 'destroy');
}