Files
xiaobaifupan/next/playwright.config.js

18 lines
400 B
JavaScript

const { defineConfig } = require("@playwright/test");
module.exports = defineConfig({
testDir: "./tests/e2e",
outputDir: "./data/playwright",
timeout: 30_000,
fullyParallel: false,
workers: 1,
reporter: "line",
use: {
baseURL: "http://127.0.0.1:5173",
channel: "msedge",
headless: true,
viewport: { width: 1920, height: 1080 },
trace: "retain-on-failure",
},
});