14 lines
270 B
TypeScript
14 lines
270 B
TypeScript
import { defineConfig } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./e2e",
|
|
webServer: {
|
|
command: "npm run dev",
|
|
url: "http://localhost:3000",
|
|
reuseExistingServer: true,
|
|
},
|
|
use: {
|
|
baseURL: "http://localhost:3000",
|
|
},
|
|
});
|
|
|