diff options
Diffstat (limited to '.config/karma.conf.saucelabs.js')
-rw-r--r-- | .config/karma.conf.saucelabs.js | 153 |
1 files changed, 89 insertions, 64 deletions
diff --git a/.config/karma.conf.saucelabs.js b/.config/karma.conf.saucelabs.js index cfe869d..be52a55 100644 --- a/.config/karma.conf.saucelabs.js +++ b/.config/karma.conf.saucelabs.js @@ -1,6 +1,9 @@ // Karma configuration // https://wiki.saucelabs.com/display/DOCS/Platform+Configurator +// TODO: remove dotenv after local test +// require('dotenv').config() + const karmaCommon = require('./karma.conf.common.js') const SauceLabsLaunchers = { @@ -16,7 +19,7 @@ const SauceLabsLaunchers = { platformVersion: '6.0', platformName: 'Android' },*/ - sl_android: { + /* sl_android: { base: 'SauceLabs', browserName: 'Android', deviceName: 'Android Emulator', @@ -46,7 +49,7 @@ const SauceLabsLaunchers = { recordVideo: true, recordScreenshots: true, screenResolution: '1024x768' - }/*, + } *//*, sl_macos_iphone: { base: 'SauceLabs', browserName: 'Safari', @@ -54,7 +57,37 @@ const SauceLabsLaunchers = { deviceOrientation: 'portrait', platformVersion: '10.2', platformName: 'iOS' - }*/ + } + 'SL_Chrome': { + base: 'SauceLabs', + browserName: 'chrome', + version: '48.0', + platform: 'Linux' + }, + 'SL_Firefox': { + base: 'SauceLabs', + browserName: 'firefox', + version: '50.0', + platform: 'Windows 10' + }, + 'SL_InternetExplorer': { + base: 'SauceLabs', + browserName: 'internet explorer', + version: '11.0', + platform: 'Windows 7' + }, + 'SL_Safari': { + base: 'SauceLabs', + browserName: 'safari', + platform: 'OS X 10.11', + version: '10.0' + } */ + 'SL_Chrome': { + base: 'SauceLabs', + browserName: 'chrome', + platform: 'Windows 10', + version: '70.0' + } } @@ -65,66 +98,58 @@ module.exports = function(config) { console.warn("Aborting Sauce Labs test") process.exit(1) } - - config.set( - - Object.assign(karmaCommon, { - // Concurrency level - // how many browser should be started simultaneous - // Saucelabs allow up to 5 concurrent sessions on the free open source tier. - concurrency: 5, - - // this specifies which plugins karma should load - // by default all karma plugins, starting with `karma-` will load - // so if you are really puzzled why something isn't working, then comment - // out plugins: [] - it's here to make karma load faster - // get possible karma plugins by `ls node_modules | grep 'karma-*'` - plugins: [ - 'karma-coverage', - 'karma-jasmine', - 'karma-sauce-launcher', - 'karma-spec-reporter' - ], - - // test results reporter to use - // possible values: 'dots', 'progress' - // available reporters: https://npmjs.org/browse/keyword/karma-reporter - reporters: ['spec', 'saucelabs'], - - specReporter: { - maxLogLines: 5, // limit number of lines logged per test - suppressErrorSummary: false,// do print error summary - suppressFailed: false, // do print information about failed tests - suppressPassed: true, // do not print information about passed tests - suppressSkipped: true, // do not print information about skipped tests - showSpecTiming: true, // print the time elapsed for each spec - failFast: false // test would finish with error when a first fail occurs. - }, - - customLaunchers: SauceLabsLaunchers, - - // start these browsers - browsers: Object.keys(SauceLabsLaunchers), - sauceLabs: { - testName: 'SVG.js Unit Tests', - connectOptions: { - noSslBumpDomains: "all" - } - }, - - // The number of disconnections tolerated. - browserDisconnectTolerance: 0, // well, sometimes it helps to just restart - // How long does Karma wait for a browser to reconnect (in ms). - browserDisconnectTimeout: 10 * 60 * 1000, - // How long will Karma wait for a message from a browser before disconnecting from it (in ms). ~ macOS 10.12 needs more than 7 minutes - browserNoActivityTimeout: 20 * 60 * 1000, - // Timeout for capturing a browser (in ms). On newer versions of iOS simulator (10.0+), the start up time could be between 3 - 6 minutes. - captureTimeout: 12 * 60 * 1000, // this is useful if saucelabs takes a long time to boot a vm - - // Required to make Safari on Sauce Labs play nice. - hostname: 'karmalocal.dev' - }) - - ) + const settings = Object.assign(karmaCommon(config), { + // Concurrency level + // how many browser should be started simultaneous + // Saucelabs allow up to 5 concurrent sessions on the free open source tier. + concurrency: 5, + + // this specifies which plugins karma should load + // by default all karma plugins, starting with `karma-` will load + // so if you are really puzzled why something isn't working, then comment + // out plugins: [] - it's here to make karma load faster + // get possible karma plugins by `ls node_modules | grep 'karma-*'` + plugins: [ + 'karma-jasmine', + 'karma-sauce-launcher', + ], + + logLevel: config.LOG_DEBUG, + + // test results reporter to use + // possible values: 'dots', 'progress' + // available reporters: https://npmjs.org/browse/keyword/karma-reporter + reporters: ['dots', 'saucelabs'], + + customLaunchers: SauceLabsLaunchers, + + // start these browsers + browsers: Object.keys(SauceLabsLaunchers), + sauceLabs: { + testName: 'SVG.js Unit Tests', + // connectOptions: { + // noSslBumpDomains: "all" + // }, + // connectOptions: { + // port: 5757, + // logfile: 'sauce_connect.log' + // }, + }, + + // The number of disconnections tolerated. + // browserDisconnectTolerance: 0, // well, sometimes it helps to just restart + // // How long does Karma wait for a browser to reconnect (in ms). + // browserDisconnectTimeout: 10 * 60 * 1000, + // // How long will Karma wait for a message from a browser before disconnecting from it (in ms). ~ macOS 10.12 needs more than 7 minutes + // browserNoActivityTimeout: 20 * 60 * 1000, + // // Timeout for capturing a browser (in ms). On newer versions of iOS simulator (10.0+), the start up time could be between 3 - 6 minutes. + // captureTimeout: 12 * 60 * 1000, // this is useful if saucelabs takes a long time to boot a vm + + // // Required to make Safari on Sauce Labs play nice. + // // hostname: 'karmalocal.dev' + }) + + console.log(settings) + config.set(settings) } |