mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
12 lines
304 B
TypeScript
12 lines
304 B
TypeScript
import { defineConfig } from "@playwright/test";
|
|||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
testDir: "./tests",
|
||
|
|
webServer: {
|
||
|
|
command: "pnpm exec vite preview --host 127.0.0.1 --port 4174",
|
||
|
|
url: "http://127.0.0.1:4174",
|
||
|
|
reuseExistingServer: true,
|
||
|
|
},
|
||
|
|
use: { baseURL: "http://127.0.0.1:4174" },
|
||
|
|
});
|