Skip to content

Commit 393ee86

Browse files
committed
Standardized test setup
1 parent 6f07d77 commit 393ee86

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

config/ember-try.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ module.exports = async function() {
7070
},
7171
npm: {
7272
devDependencies: {
73-
'@ember/jquery': '^0.5.1'
73+
'@ember/jquery': '^1.1.0'
7474
}
7575
}
7676
},

tests/dummy/config/targets.js

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,12 @@ const browsers = [
66
'last 1 Safari versions'
77
];
88

9-
// TODO: Temporary fix for Travis tests
10-
// const isCI = !!process.env.CI;
11-
// const isProduction = process.env.EMBER_ENV === 'production';
12-
//
13-
// if (isCI || isProduction) {
14-
// browsers.push('ie 11');
15-
// }
9+
const isCI = Boolean(process.env.CI);
10+
const isProduction = process.env.EMBER_ENV === 'production';
11+
12+
if (isCI || isProduction) {
13+
browsers.push('ie 11');
14+
}
1615

1716
module.exports = {
1817
browsers

0 commit comments

Comments
 (0)