10 lines
309 B
TypeScript
10 lines
309 B
TypeScript
import { defineConfig, devices } from "@playwright/test";
|
|
export default defineConfig({
|
|
testDir: "./tests/e2e",
|
|
use: {
|
|
baseURL: process.env.PLAYWRIGHT_BASE_URL ?? "http://127.0.0.1:3000",
|
|
trace: "on-first-retry",
|
|
},
|
|
projects: [{ name: "chromium", use: { ...devices["Desktop Chrome"] } }],
|
|
});
|