forked from gojko/bugmagnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestem.json
More file actions
28 lines (28 loc) · 675 Bytes
/
testem.json
File metadata and controls
28 lines (28 loc) · 675 Bytes
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
{
"test_page": "./testem/jasmine2runner.mustache",
"serve_files": [
"./testem/compiled/**/*.js"
],
"src_files": [
"src/**/*.js",
"test/**/*.js"
],
"before_tests": "esbuild test/*-spec.js --bundle --outdir=testem/compiled --platform=browser --format=esm --target=es2020 --sourcemap",
"launch_in_dev": ["Chromium", "Firefox"],
"launch_in_ci": ["Chromium", "Firefox"],
"browser_args": {
"Chromium": [
"--headless=new",
"--no-sandbox",
"--disable-setuid-sandbox",
"--disable-dev-shm-usage",
"--disable-gpu"
],
"Firefox": [
"--headless"
]
},
"routes": {
"/jasmine": "node_modules/jasmine-core/lib/jasmine-core"
}
}