Created
August 4, 2014 19:48
-
-
Save jfridye/fecfc0f3e0af42bb8fa5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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