savevictoriaway/packages/frontend/playwright.config.ts

19 lines
335 B
TypeScript

import { defineConfig, devices } from "@playwright/test";
export default defineConfig({
testDir: "./e2e",
fullyParallel: true,
workers: "100%",
reporter: "html",
use: {
baseURL: "http://localhost:8080",
trace: "on-first-retry",
},
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
],
});