16 lines
325 B
TypeScript
16 lines
325 B
TypeScript
import { defineConfig } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./tests/e2e",
|
|
testMatch: "**/*.e2e.ts",
|
|
use: {
|
|
baseURL: "http://localhost:3000"
|
|
},
|
|
webServer: {
|
|
command: "npm run dev:web",
|
|
url: "http://localhost:3000",
|
|
reuseExistingServer: true,
|
|
timeout: 120000
|
|
}
|
|
});
|