Skip to content

Commit

Permalink
chore(ci): target only chrome in build
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlafroscia committed Mar 20, 2020
1 parent cf3a7d2 commit e1d1e72
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions tests/dummy/config/targets.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
'use strict';

const browsers = ['last 1 Chrome versions', 'last 1 Firefox versions', 'last 1 Safari versions'];

const isCI = !!process.env.CI;
const isProduction = process.env.EMBER_ENV === 'production';

if (isCI || isProduction) {
browsers.push('ie 11');
}

module.exports = {
browsers
browsers: ['last 1 Chrome versions']
};

0 comments on commit e1d1e72

Please sign in to comment.