aa462f9f52
Update project name from teaboy-os to tx-os and remove obsolete services.
18 lines
371 B
JavaScript
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,
|
|
},
|
|
});
|