mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-24 19:56:56 +01:00
07742799ed
Test: Add clear stats test Test: Attempt to fix tests Test: Add test for disable auth Update README
13 lines
315 B
JavaScript
13 lines
315 B
JavaScript
module.exports = {
|
|
"launch": {
|
|
"headless": process.env.HEADLESS_TEST || false,
|
|
"userDataDir": "./data/test-chrome-profile",
|
|
args: [
|
|
"--no-sandbox",
|
|
"--disable-setuid-sandbox",
|
|
"--disable-gpu",
|
|
"--disable-dev-shm-usage"
|
|
],
|
|
}
|
|
};
|