playwright.config.js 270 B

1234567891011
  1. module.exports = {
  2. testDir: './e2e',
  3. timeout: 30000,
  4. retries: 0,
  5. use: {
  6. // uni-app H5 dev server runs on 8080 by default
  7. // Must run `npm run dev:h5` in cfc-frontend before running E2E tests
  8. baseURL: 'http://localhost:8080',
  9. headless: true
  10. }
  11. }