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
quizzy-application/e2e-playwright/playwright.config.js
AndrewTrieu be427eda10 First commit
2023-03-09 11:21:18 +02:00

19 lines
312 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-chromium",
use: {
browserName: "chromium",
},
},
],
};