deps: ember-cli@2.4.0

This commit is contained in:
Kevin Ansfield 2016-03-01 07:38:03 +00:00
parent 8dc575742d
commit bcd67e85cb
4 changed files with 18 additions and 17 deletions

View File

@ -21,11 +21,11 @@
"devDependencies": {
"broccoli-asset-rev": "2.2.0",
"ember-ajax": "0.7.1",
"ember-cli": "2.3.0",
"ember-cli": "2.4.0",
"ember-cli-app-version": "1.0.0",
"ember-cli-babel": "5.1.5",
"ember-cli-content-security-policy": "0.4.0",
"ember-cli-dependency-checker": "1.1.0",
"ember-cli-dependency-checker": "1.2.0",
"ember-cli-deprecation-workflow": "0.1.6",
"ember-cli-fastclick": "1.0.3",
"ember-cli-htmlbars": "1.0.1",

14
testem.js Normal file
View File

@ -0,0 +1,14 @@
/*jshint node:true*/
module.exports = {
'framework': 'mocha',
'test_page': 'tests/index.html?hidepassed',
'disable_watching': true,
'launch_in_ci': [
'Chrome',
'Firefox'
],
'launch_in_dev': [
'Chrome',
'Firefox'
]
};

View File

@ -1,13 +0,0 @@
{
"framework": "mocha",
"test_page": "tests/index.html?hidepassed",
"disable_watching": true,
"launch_in_ci": [
"Chrome",
"Firefox"
],
"launch_in_dev": [
"Chrome",
"Firefox"
]
}

View File

@ -13,11 +13,11 @@ export default function (name, options = {}) {
},
afterEach() {
destroyApp(this.application);
if (options.afterEach) {
options.afterEach.apply(this, arguments);
}
destroyApp(this.application);
}
});
}