Files
TX/artifacts/tx-os/playwright.config.mjs
T
Riyadh aa462f9f52 Rename project and remove unused services
Update project name from teaboy-os to tx-os and remove obsolete services.
2026-04-22 10:52:09 +00:00

18 lines
371 B
JavaScript

import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: "./tests",
testMatch: /.*\.spec\.mjs$/,
fullyParallel: false,
retries: 0,
workers: 1,
reporter: [["list"]],
use: {
baseURL: process.env.TEST_WEB_BASE ?? "http://localhost:80",
trace: "off",
screenshot: "off",
video: "off",
headless: true,
},
});