Skip to content

Commit

Permalink
Add sauce labs integration.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalton committed Sep 26, 2016
1 parent a308758 commit 77a9ce5
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
70 changes: 70 additions & 0 deletions karma.conf-sauce.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/* jshint node: true */

"use strict";

// Browsers to run on Sauce Labs platforms.
var sauceBrowsers = [
[ "chrome", "53", "Windows 10" ],
[ "chrome", "52", "Windows 10" ],
[ "firefox", "48", "Windows 10" ],
[ "firefox", "47", "Windows 10" ],
[ "microsoftedge", "13", "Windows 10" ],
[ "internet explorer", "11", "Windows 10" ],
[ "safari", "9", "OS X 10.11" ],
[ "safari", "8", "OS X 10.10" ]
].reduce( function( object, platform ) {

// Convert "internet explorer" -> "ie".
var label = platform[ 0 ].split( " " );
label = (
label.length > 1 ? label.map( function( word ) { return word[ 0 ]; } ) : label
).join( "" ) +
"_v" + platform[ 1 ];

object[ label ] = {
base: "SauceLabs",
browserName: platform[ 0 ],
version: platform[ 1 ],
platform: platform[ 2 ]
};
return object;
}, {} );

module.exports = function( config ) {
if ( !process.env.SAUCE_USERNAME || !process.env.SAUCE_ACCESS_KEY ) {
console.log( "Sauce environments not set --- Skipping" );
return process.exit( 0 );
}
config.set( {
basePath: "",
browserDisconnectTolerance: 5,
frameworks: [ "qunit" ],
singleRun: true,

// The list of files / patterns to load in the browser.
files: [
"test/bootstrap.js",
"js/impress.js",
"test/core_tests.js"
],

// The number of sauce tests to start in parallel.
concurrency: 1,

// Test results reporter to use.
reporters: [ "dots", "saucelabs" ],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
sauceLabs: {
build: "CIRCLE-CI #" + process.env.CIRCLE_BUILD_NUM,
startConnect: true,
tunnelIdentifier: process.env.CIRCLE_BUILD_NUM
},
captureTimeout: 120000,
customLaunchers: sauceBrowsers,

// Browsers to launch.
browsers: Object.keys( sauceBrowsers )
} );
};
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"karma-chrome-launcher": "1.0.1",
"karma-cli": "1.0.0",
"karma-qunit": "1.0.0",
"karma-sauce-launcher": "1.0.0",
"qunitjs": "2.0.0-rc1"
}
}

0 comments on commit 77a9ce5

Please sign in to comment.