diff --git a/frontend/console/playwright.config.ts b/frontend/console/playwright.config.ts index 43a565ab75..0f49b0bf89 100644 --- a/frontend/console/playwright.config.ts +++ b/frontend/console/playwright.config.ts @@ -8,7 +8,7 @@ export default defineConfig({ fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI, - /* Retry on CI only */ + /* Retry on CI only. */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 1 : undefined, @@ -39,7 +39,7 @@ export default defineConfig({ command: 'ftl dev --recreate', url: 'http://localhost:8892', reuseExistingServer: !process.env.CI, - /* If the test end up needing to pull the postgres docker image this can take a while, give it two minutes */ + /* If the test ends up needing to pull the postgres docker image, this can take a while. Give it two minutes. */ timeout: 120000, }, });