-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathkarma.conf.js
46 lines (45 loc) · 1.4 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
/* eslint-disable import/no-extraneous-dependencies */
const { createDefaultConfig } = require('@open-wc/testing-karma');
const merge = require('deepmerge');
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' },
{ pattern: 'karma-init.js',
type: 'module'
},
{ pattern: config.grep ? config.grep : 'src/elements/**/*.spec.js',
type: 'module'
},
],
esm: {
nodeResolve: true,
compatibility: "max",
moduleDirs: ['node_modules', 'dist'],
},
proxies: {
// "/src/": "/base/src/",
// "/dist/js/": "/base/dist/js/",
},
middlewares: [
// attempted to add routes here
],
// you can overwrite/extend the config further
polyfillsLoader: {
polyfills: {
webcomponents: true,
shadyCssCustomStyle: true,
},
},
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel: config.LOG_INFO,
}),
);
return config;
};