-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.sauce.conf.js
54 lines (52 loc) · 1.25 KB
/
karma.sauce.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
/* eslint-env node */
const { createDefaultConfig } = require('@open-wc/testing-karma');
const merge = require('deepmerge');
const customLaunchers = {
chrome: {
base: 'SauceLabs',
browserName: 'chrome',
platform: 'OS X 10.13',
},
firefox: {
base: 'SauceLabs',
browserName: 'firefox',
platform: 'OS X 10.13'
},
safari: {
base: 'SauceLabs',
browserName: 'safari',
platform: 'OS X 10.13'
},
edge: {
base: 'SauceLabs',
browserName: 'microsoftedge',
platform: 'Windows 10'
}
};
module.exports = config => {
config.set(
merge(createDefaultConfig(config), {
files: [
// runs all files ending with .test in the test folder,
// can be overwritten by passing a --grep flag. examples:
//
// npm run test -- --grep test/foo/bar.test.js
// npm run test -- --grep test/bar/*
{ pattern: config.grep ? config.grep : 'test/**/*.test.js', type: 'module' },
],
// see the karma-esm docs for all options
esm: {
// if you are using 'bare module imports' you will need this option
nodeResolve: true,
},
sauceLabs: {
testName: 'Unit Tests'
},
customLaunchers: customLaunchers,
browsers: Object.keys(customLaunchers),
reporters: ['dots', 'saucelabs'],
singleRun: true
}),
);
return config;
};