a82f4e1813
The first test is testing a tricky cache scenario with the back when testing variables. The end-to-end package used is testcafe.
13 lines
274 B
JavaScript
13 lines
274 B
JavaScript
const BROWSER = process.env.BROWSER || "chrome --use-fake-device-for-media-stream";
|
|
|
|
module.exports = {
|
|
"browsers": BROWSER,
|
|
"hostname": "localhost",
|
|
"skipJsErrors": true,
|
|
"src": "tests/",
|
|
"screenshots": {
|
|
"path": "screenshots/",
|
|
"takeOnFails": true
|
|
}
|
|
}
|