10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
import { defineConfig } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
webServer: {
|
|
command: "PORT=4173 ORIGIN=http://localhost:4173 node build/index.js",
|
|
port: 4173,
|
|
},
|
|
testDir: "e2e",
|
|
});
|