drives the built client over websocket like production: connect, join, send and echo a message, and deliver a message between two clients. ergo is fetched and started by the test harness; run with npm run test:e2e.
28 lines
1 KiB
TypeScript
28 lines
1 KiB
TypeScript
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
// E2E: build the real client, serve it with `vite preview`, and run it against a
|
|
// local Ergo IRCv3 server (started in e2e/global-setup). The service worker is
|
|
// blocked so config.json can be intercepted cleanly per test.
|
|
export default defineConfig({
|
|
testDir: './e2e',
|
|
timeout: 45_000,
|
|
expect: { timeout: 10_000 },
|
|
fullyParallel: false,
|
|
workers: 1,
|
|
retries: process.env.CI ? 1 : 0,
|
|
reporter: process.env.CI ? [['list'], ['html', { open: 'never' }]] : 'list',
|
|
globalSetup: './e2e/global-setup.ts',
|
|
globalTeardown: './e2e/global-teardown.ts',
|
|
use: {
|
|
baseURL: 'http://127.0.0.1:4173',
|
|
serviceWorkers: 'block',
|
|
trace: 'retain-on-failure',
|
|
},
|
|
projects: [{ name: 'chromium', use: { ...devices['Desktop Chrome'] } }],
|
|
webServer: {
|
|
command: 'npm run build && npx vite preview --port 4173 --strictPort --host 127.0.0.1',
|
|
url: 'http://127.0.0.1:4173/app/',
|
|
reuseExistingServer: !process.env.CI,
|
|
timeout: 180_000,
|
|
},
|
|
});
|