-
Notifications
You must be signed in to change notification settings - Fork 24
/
karma.conf.js
82 lines (75 loc) · 2.32 KB
/
karma.conf.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
77
78
79
80
81
82
const webpackConfig = require('./webpack.config')
const browsers = require('./browsers')
const useCloud = process.env.USE_CLOUD === 'true'
const browserStackUserName = process.env.BROWSER_STACK_USERNAME
const browserStackAccessKey = process.env.BROWSER_STACK_ACCESS_KEY
const isTravis = process.env.TRAVIS
const travisBuildNumber = process.env.TRAVIS_BUILD_NUMBER
const travisBuildId = process.env.TRAVIS_BUILD_ID
const travisJobNumber = process.env.TRAVIS_JOB_NUMBER
const isBench = process.env.NODE_ENV === 'benchmark'
module.exports = config => {
config.set({
customLaunchers: browsers,
browsers: ['Chrome'],
frameworks: ['mocha'],
files: [
'node_modules/es5-shim/es5-shim.js',
'node_modules/es5-shim/es5-sham.js',
'tests.webpack.js'
],
preprocessors: {
'tests.webpack.js': ['webpack', 'sourcemap']
},
webpack: Object.assign(webpackConfig, {
devtool: 'inline-source-map',
module: {
rules: [
Object.assign(webpackConfig.module.rules[0], {
exclude: /node_modules(?!(\/|\\)camelcase-css)/
})
]
}
}),
webpackServer: {
noInfo: true
},
reporters: ['mocha']
})
if (isBench) {
Object.assign(config, {
browsers: ['Chrome'],
frameworks: ['benchmark'],
// Using a fixed position for a file name, m.b. should use an args parser later.
files: [process.argv[4] || 'benchmark/**/*.js'],
preprocessors: {'benchmark/**/*.js': ['webpack']},
reporters: ['benchmark'],
// Some tests are slow.
browserNoActivityTimeout: 20000
})
}
if (useCloud) {
Object.assign(config, {
browsers: Object.keys(browsers),
// My current OS plan allows max 2 parallel connections.
concurrency: 2,
retryLimit: 3,
// Timeouts taken from https://github.com/karma-runner/karma-browserstack-launcher/issues/61
captureTimeout: 3e5,
browserNoActivityTimeout: 3e5,
browserDisconnectTimeout: 3e5,
browserDisconnectTolerance: 3
})
config.browserStack = {
username: browserStackUserName,
accessKey: browserStackAccessKey,
captureTimeout: 3e5
}
if (isTravis) {
Object.assign(config.browserStack, {
build: `TRAVIS #${travisBuildNumber} (${travisBuildId})`,
name: travisJobNumber
})
}
}
}