-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathGruntFile.js
58 lines (52 loc) · 1.42 KB
/
GruntFile.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
57
58
module.exports = function(grunt) {
var browsers = [{
browserName: "firefox",
platform: "Windows 10"
}, {
browserName: "chrome",
platform: "Windows 10"
}, {
browserName: "MicrosoftEdge",
platform: "Windows 10"
}, {
browserName: "chrome",
platform: "macOS 10.12"
}, {
browserName: "firefox",
platform: "macOS 10.12"
}, {
browserName: "safari",
platform: "macOS 10.12",
}];
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
connect: {
server: {
options: {
base: "",
port: 9999
}
}
},
"saucelabs-mocha": {
all: {
options: {
urls: [
"http://localhost:9999/test/browser/test.html"
],
browsers: browsers,
build: process.env.TRAVIS_JOB_ID,
testname: "mocha tests",
throttled: 3,
sauceConfig: {
"video-upload-on-pass": false
}
}
}
},
watch: {}
});
grunt.loadNpmTasks("grunt-contrib-connect");
grunt.loadNpmTasks("grunt-saucelabs");
grunt.registerTask("default", ["connect", "saucelabs-mocha"]);
};