mirror of
https://github.com/siddharthvaddem/openscreen.git
synced 2026-08-29 03:08:30 +08:00
9 lines
203 B
TypeScript
9 lines
203 B
TypeScript
import { defineConfig } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./tests/e2e",
|
|
timeout: 120_000, // GIF encoding is CPU-bound; give it room
|
|
retries: 0,
|
|
reporter: "list",
|
|
});
|