This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
shopping-lists/e2e-playwright/playwright.config.js
AndrewTrieu 08128374c1 First commit
2022-12-27 19:38:34 +02:00

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",
},
},
],
};