35 lines
837 B
TypeScript
35 lines
837 B
TypeScript
import { defineConfig } from '@playwright/test'
|
|
|
|
export default defineConfig({
|
|
testDir: './tests/e2e',
|
|
fullyParallel: false,
|
|
timeout: 30_000,
|
|
use: {
|
|
baseURL: 'http://127.0.0.1:4173',
|
|
viewport: { width: 1440, height: 900 },
|
|
},
|
|
webServer: [
|
|
{
|
|
command: 'pnpm demo:build && pnpm exec vite preview examples/content-repo --host 127.0.0.1 --port 4173',
|
|
url: 'http://127.0.0.1:4173',
|
|
reuseExistingServer: true,
|
|
timeout: 120_000,
|
|
env: {
|
|
...process.env,
|
|
PRESENTER_TOKEN: 'test-token',
|
|
},
|
|
},
|
|
{
|
|
command: 'pnpm demo:present -- getting-started',
|
|
url: 'http://127.0.0.1:4174',
|
|
reuseExistingServer: true,
|
|
timeout: 120_000,
|
|
env: {
|
|
...process.env,
|
|
PORT: '4174',
|
|
PRESENTER_TOKEN: 'test-token',
|
|
},
|
|
},
|
|
],
|
|
})
|