From 37378540a8947a5f154e70e7bd78128e727ad0aa Mon Sep 17 00:00:00 2001 From: Jeeyun Lim Date: Mon, 24 Apr 2017 14:53:06 -0700 Subject: [PATCH] [core] fixing karma timeout error in travis (#666) Fixes #666. Signed-off-by: Jeeyun Lim --- build/karma.conf.js | 90 --------------------------------------------- 1 file changed, 90 deletions(-) diff --git a/build/karma.conf.js b/build/karma.conf.js index 23f1de752d..3e53c87b14 100644 --- a/build/karma.conf.js +++ b/build/karma.conf.js @@ -12,48 +12,12 @@ module.exports = function (config) { // Browsers to run on Sauce Labs var customLaunchers = { - 'SL_Chrome_Win_7': { - base: 'SauceLabs', - browserName: 'chrome', - version: 57, - platform: 'Windows 7' - }, - 'SL_Chrome_Win_8': { - base: 'SauceLabs', - browserName: 'chrome', - version: 57, - platform: 'Windows 8' - }, - 'SL_Chrome_Win_8_1': { - base: 'SauceLabs', - browserName: 'chrome', - version: 57, - platform: 'Windows 8.1' - }, 'SL_Chrome_Win_10': { base: 'SauceLabs', browserName: 'chrome', version: 57, platform: 'Windows 10' }, - 'SL_Chrome_56_Win_10': { - base: 'SauceLabs', - browserName: 'chrome', - version: 56, - platform: 'Windows 10' - }, - 'SL_Chrome_55_Win_10': { - base: 'SauceLabs', - browserName: 'chrome', - version: 55, - platform: 'Windows 10' - }, - 'SL_Chrome_Mac': { - base: 'SauceLabs', - browserName: 'chrome', - version: 57, - platform: 'OS X 10.11' - }, 'SL_IE_11': { base: 'SauceLabs', browserName: 'internet explorer', @@ -72,65 +36,11 @@ module.exports = function (config) { version: '14', platform: 'Windows 10' }, - 'SL_FireFox_Win_7': { - base: 'SauceLabs', - browserName: 'firefox', - version: 52, - platform: 'Windows 7' - }, - 'SL_FireFox_Win_8': { - base: 'SauceLabs', - browserName: 'firefox', - version: 52, - platform: 'Windows 8' - }, - 'SL_FireFox_Win_8_1': { - base: 'SauceLabs', - browserName: 'firefox', - version: 52, - platform: 'Windows 8.1' - }, - 'SL_FireFox_Win_10': { - base: 'SauceLabs', - browserName: 'firefox', - version: 52, - platform: 'Windows 10' - }, - 'SL_FireFox_50_Win_10': { - base: 'SauceLabs', - browserName: 'firefox', - version: 50, - platform: 'Windows 10' - }, 'SL_FireFox_51_Win_10': { base: 'SauceLabs', browserName: 'firefox', version: 51, platform: 'Windows 10' - }, - 'SL_FireFox_Mac': { - base: 'SauceLabs', - browserName: 'firefox', - version: 49, - platform: 'OS X 10.12' - }, - 'SL_FireFox_Linux': { - base: 'SauceLabs', - browserName: 'firefox', - version: 45, - platform: 'Linux' - }, - 'SL_Safari_9': { - base: 'SauceLabs', - browserName: 'safari', - version: 9, - platform: 'OS X 10.12' - }, - 'SL_Safari_10': { - base: 'SauceLabs', - browserName: 'safari', - version: 10, - platform: 'OS X 10.12' } };