14 lines
351 B
TypeScript
14 lines
351 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
import { sharedConfigWithPort } from './playwright.shared.config';
|
|
|
|
const port = 5173;
|
|
|
|
export default defineConfig({
|
|
...sharedConfigWithPort(port),
|
|
webServer: {
|
|
command: 'cd ../../examples/svelte && pnpm run dev --port 5173',
|
|
port: port,
|
|
reuseExistingServer: !process.env.CI,
|
|
},
|
|
});
|