-
Notifications
You must be signed in to change notification settings - Fork 8
/
karma.conf.cjs
76 lines (72 loc) · 2.49 KB
/
karma.conf.cjs
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
process.env.CHROME_BIN = require('playwright').chromium.executablePath();
const path = require('path');
const basePath = path.resolve(__dirname);
const commonChromeFlags = [
'--no-default-browser-check',
'--no-first-run',
'--no-sandbox',
'--no-managed-user-acknowledgment-check',
'--disable-background-timer-throttling',
'--disable-backing-store-limit',
'--disable-boot-animation',
'--disable-cloud-import',
'--disable-contextual-search',
'--disable-default-apps',
'--disable-extensions',
'--disable-infobars',
'--disable-translate',
'--force-prefers-reduced-motion',
'--lang=en-US'
];
module.exports = config => {
const options = {
basePath,
browserDisconnectTimeout: 10000,
processKillTimeout: 10000,
frameworks: [
'jasmine',
],
plugins: [
'karma-jasmine',
'karma-jasmine-html-reporter',
'karma-chrome-launcher'
],
files: [
// Test files
{ pattern: './dist/esm/**/*.spec.js', type: 'module' },
// Library files and dependencies
{ pattern: './dist/esm/**/*.js', type: 'module', included: false },
{ pattern: './dist/esm/**/*.map', included: false },
],
reporters: ['kjhtml'],
browsers: ['ChromeHeadlessOpt'],
customLaunchers: {
ChromeDebugging: {
base: 'Chrome',
flags: [...commonChromeFlags, '--remote-debugging-port=9333'],
debug: true
},
ChromeHeadlessOpt: {
base: 'ChromeHeadless',
flags: [...commonChromeFlags]
}
},
client: {
captureConsole: true
},
// to disable the WARN 404 for image requests
logLevel: config.LOG_ERROR,
customHeaders: [
// Test under the OWASP Basic non-strict CSP Policy
// See: https://cheatsheetseries.owasp.org/cheatsheets/Content_Security_Policy_Cheat_Sheet.html#basic-non-strict-csp-policy
// Need script-src 'unsafe-inline' to support karma behavior
// See https://github.com/karma-runner/karma/issues/3260
{
match: '\\.html',
name: 'Content-Security-Policy',
value: "default-src 'self'; frame-ancestors 'self'; form-action 'self'; object-src 'none'; script-src 'self' 'unsafe-inline';"
}
]
};
config.set(options);
};