-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsaucelabs.js
56 lines (54 loc) · 1.11 KB
/
saucelabs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*jslint indent:2, maxlen:80, node:true*/
'use strict';
// exports
module.exports = {
urls: [
'http://127.0.0.1:9999/test/unminified.html',
'http://127.0.0.1:9999/test/minified.html'
],
tunnelTimeout: 5,
build: process.env.TRAVIS_JOB_ID,
concurrency: 3,
browsers: [
{
browserName: "internet explorer",
version: "11",
platform: "Windows 8.1"
},
{
browserName: "internet explorer",
version: "10",
platform: "Windows 8"
},
{
browserName: "firefox",
version: "26",
platform: "Windows 7"
},
{
browserName: "googlechrome",
version: "31",
platform: "OS X 10.9"
},
{
browserName: "android",
version: "4.0",
platform: "Linux",
"device-orientation": "portrait"
},
{
browserName: "iphone",
version: "7",
platform: "OS X 10.9",
"device-orientation": "portrait"
},
{
browserName: "iphone",
version: "6.1",
platform: "OS X 10.8",
"device-orientation": "portrait"
}
],
testname: 'requirejs-promise',
tags: ['master']
};