-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGruntfile.js
76 lines (69 loc) · 1.5 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/* eslint import/no-extraneous-dependencies: ["error", {"devDependencies": true}] */
require('dotenv').config();
const testUrl = 'http://localhost:3000/tests.html';
module.exports = (grunt) => {
const browsers = [
{
browserName: 'safari',
platform: 'macOS 10.12',
},
{
browserName: 'safari',
platform: 'OS X 10.8',
version: '6.0'
},
{
browserName: 'internet explorer',
platform: 'Windows 7',
version: '9.0'
},
{
browserName: 'internet explorer',
platform: 'Windows 7',
version: '11.0'
},
{
browserName: 'microsoftedge',
platform: 'Windows 10'
},
{
browserName: 'googlechrome',
platform: 'Windows 10'
},
{
browserName: 'firefox',
platform: 'linux'
},
];
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
connect: {
server: {
options: {
base: '',
port: 9999
}
}
},
'saucelabs-mocha': {
all: {
options: {
urls: [
testUrl
],
browsers,
build: process.env.TRAVIS_JOB_ID,
testname: 'js-set-functions mocha tests',
throttled: 5,
sauceConfig: {
'video-upload-on-pass': false
}
}
}
},
watch: {}
});
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-saucelabs');
grunt.registerTask('sauce', ['connect', 'saucelabs-mocha']);
};