-
Notifications
You must be signed in to change notification settings - Fork 13
/
karma.conf-ci.js
74 lines (70 loc) · 1.71 KB
/
karma.conf-ci.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
module.exports = function (config) {
try {
require('dotenv').config();
} catch(e) {
}
if (!process.env.SAUCE_USERNAME || !process.env.SAUCE_ACCESS_KEY) {
console.log('Make sure the SAUCE_USERNAME and SAUCE_ACCESS_KEY environment variables are set.')
process.exit(1)
}
// Browsers to run on Sauce Labs
// Check out https://saucelabs.com/platforms for all browser/OS combos
var customLaunchers = {
OSX_Chrome: {
base: 'SauceLabs',
platform: 'OS X 10.11',
browserName: 'chrome',
},
OSX_Firefox: {
base: 'SauceLabs',
platform: 'OS X 10.11',
browserName: 'firefox'
},
Windows_Chrome: {
base: 'SauceLabs',
platform: 'Windows 10',
browserName: 'chrome',
},
Windows_Edge: {
base: 'SauceLabs',
platform: 'Windows 10',
browserName: 'MicrosoftEdge'
}
}
config.set({
basePath: '',
frameworks: ['mocha', 'chai'],
files: [
'index.js',
'test/*.js'
],
reporters: ['progress', 'saucelabs', 'coverage'],
preprocessors: {
'index.js': ['coverage']
},
coverageReporter: {
dir : 'coverage/',
reporters: [
{type: 'lcov', subdir: '.'},
{type: 'text-summary'}
]
},
port: 9876,
colors: true,
logLevel: config.LOG_DEBUG,
sauceLabs: {
testName: 'http-tagged-template Test Suite',
recordScreenshots: false,
connectOptions: {
port: 5757,
logfile: 'sauce_connect.log'
},
public: 'public'
},
// Increase timeout in case connection in CI is slow
captureTimeout: 120000,
customLaunchers: customLaunchers,
browsers: Object.keys(customLaunchers),
singleRun: true
})
}