playwright.config.ts 338 B

12345678910111213
  1. import { defineConfig } from "@playwright/test";
  2. export default defineConfig({
  3. testDir: "./tests/e2e",
  4. timeout: 30_000,
  5. use: {
  6. baseURL: "http://127.0.0.1:3008",
  7. viewport: { width: 1600, height: 1000 },
  8. screenshot: "only-on-failure",
  9. trace: "retain-on-failure",
  10. },
  11. outputDir: "../test-artifacts/playwright",
  12. });