first commit
This commit is contained in:
15
playwright.config.ts
Normal file
15
playwright.config.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { defineConfig } from "@playwright/test";
|
||||
|
||||
export default defineConfig({
|
||||
testDir: "./tests/e2e",
|
||||
timeout: 60_000,
|
||||
use: {
|
||||
baseURL: "http://127.0.0.1:3000",
|
||||
headless: true
|
||||
},
|
||||
webServer: {
|
||||
command: "npm run dev",
|
||||
port: 3000,
|
||||
reuseExistingServer: !process.env.CI
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user