From e1d1e72b23509228ead3c56156a7759208a09ee8 Mon Sep 17 00:00:00 2001 From: Alex LaFroscia Date: Fri, 20 Mar 2020 16:00:15 -0400 Subject: [PATCH] chore(ci): target only chrome in build --- tests/dummy/config/targets.js | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/tests/dummy/config/targets.js b/tests/dummy/config/targets.js index 846c718..d5a8cf8 100644 --- a/tests/dummy/config/targets.js +++ b/tests/dummy/config/targets.js @@ -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'] };