21 lines
338 B
JavaScript
21 lines
338 B
JavaScript
module.exports = {
|
|
timeout: 10000,
|
|
retries: 0,
|
|
reporter: "list",
|
|
workers: 5,
|
|
use: {
|
|
baseURL: "http://localhost:7777",
|
|
headless: true,
|
|
ignoreHTTPSErrors: true,
|
|
},
|
|
projects: [
|
|
{
|
|
name: "e2e-headless-chrome",
|
|
use: {
|
|
browserName: "chromium",
|
|
channel: "chrome",
|
|
},
|
|
},
|
|
],
|
|
};
|