forked from folio-org/stripes-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
45 lines (38 loc) · 1006 Bytes
/
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
module.exports = (config) => {
const testIndex = './test/bigtest/index.js';
const configuration = {
files: [
{ pattern: testIndex, watched: false },
],
preprocessors: {
[testIndex]: ['webpack']
},
browserStack: {
project: 'stripes-core'
},
browserDisconnectTimeout: 3e5,
browserDisconnectTolerance: 3,
browserNoActivityTimeout: 3e5,
captureTimeout: 3e5,
customLaunchers: {
bs_safari_11: {
base: 'BrowserStack',
os: 'OS X',
os_version: 'High Sierra',
browser: 'safari',
browser_version: '11.1'
},
bs_ieEdge_windows: {
base: 'BrowserStack',
browser: 'edge',
browser_version: '15.0',
os: 'Windows',
os_version: '10'
}
}
};
// BrowserStack launcher isn't automatically added by Stripes CLI
configuration.plugins = config.plugins;
configuration.plugins.push('karma-browserstack-launcher');
config.set(configuration);
};