File size: 258 Bytes
93e7af1 | 1 2 3 4 5 6 7 8 9 10 11 12 | 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'
});
|