e2e Code Coverage and all test fixes (#5328)

Add e2e code coverage and fix all tests
This commit is contained in:
John Hill
2022-06-30 11:50:47 -07:00
committed by GitHub
parent 8ce15521de
commit 0f352087f5
30 changed files with 405 additions and 382 deletions

View File

@@ -4,13 +4,13 @@
/** @type {import('@playwright/test').PlaywrightTestConfig} */
const config = {
retries: 1, //Only for debugging purposes
retries: 1, //Only for debugging purposes because trace is enabled only on first retry
testDir: 'tests/performance/',
timeout: 60 * 1000,
workers: 1, //Only run in serial with 1 worker
webServer: {
command: 'npm run start',
port: 8080,
url: 'http://localhost:8080/#',
timeout: 200 * 1000,
reuseExistingServer: !process.env.CI
},