forked from folio-org/ui-marccat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
59 lines (51 loc) · 1.26 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
module.exports = (config) => {
const testIndex = './test/bigtest/index.js';
const preprocessors = {};
preprocessors[`${testIndex}`] = ['webpack'];
const configuration = {
files: [
{ pattern: testIndex, watched: false },
],
preprocessors,
browserStack: {
project: 'ui-marccat'
},
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.0'
},
bs_firefox_mac: {
base: 'BrowserStack',
browser: 'firefox',
browser_version: '57.0',
os: 'OS X',
os_version: 'Sierra'
},
bs_ieEdge_windows: {
base: 'BrowserStack',
browser: 'edge',
browser_version: '15.0',
os: 'Windows',
os_version: '10'
}
}
};
configuration.plugins = config.plugins;
if (configuration.coverageIstanbulReporter) {
configuration.coverageIstanbulReporter.thresholds.global = {
statements: 95,
branches: 85,
functions: 95,
lines: 95
};
}
config.set(configuration);
};