Some checks are pending
Copilot Setup Steps / copilot-setup-steps (push) Waiting to run
Check Pre-Tokenizer Hashes / pre-tokenizer-hashes (push) Waiting to run
Python check requirements.txt / check-requirements (push) Waiting to run
Python Type-Check / python type-check (push) Waiting to run
Update Operations Documentation / update-ops-docs (push) Waiting to run
12 lines
247 B
TypeScript
12 lines
247 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
webServer: {
|
|
command: 'npm run build && http-server ../public -p 8181',
|
|
port: 8181,
|
|
timeout: 120000,
|
|
reuseExistingServer: false
|
|
},
|
|
testDir: 'tests/e2e'
|
|
});
|