Skip to content

Instantly share code, notes, and snippets.

@jfridye
Created August 4, 2014 19:48
Show Gist options
  • Save jfridye/fecfc0f3e0af42bb8fa5 to your computer and use it in GitHub Desktop.
Save jfridye/fecfc0f3e0af42bb8fa5 to your computer and use it in GitHub Desktop.
// Learn more about configuring this file at <https://github.com/theintern/intern/wiki/Configuring-Intern>.
// These default settings work OK for most people. The options that *must* be changed below are the
// packages, suites, excludeInstrumentation, and (if you want functional tests) functionalSuites.
define(['tests/js/intern'], function (config) {
'use strict';
var exports = Object.create(config);
exports.environments = [
{ browserName: 'chrome', version: '35', platform: 'OS X 10.9' }
];
exports.tunnel = 'SauceLabsTunnel';
exports.capabilities = { 'selenium-version': '2.41.0' };
exports.maxConcurrency = 15;
exports.tunnelOptions = {
accessKey: 'f6cc3271-8aa6-49d7-aecf-c41e2df688a4',
username: 'jenkins_js_tests'
};
return exports;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment