Chore/turbo v2 (#4359)

* chore(turbo): use v2

* chore(turbo): format

* chore(tests): use list reporter
This commit is contained in:
Moritz Klack
2024-06-11 16:05:36 +02:00
committed by GitHub
parent 7895a5982d
commit 59c5d47130
4 changed files with 215 additions and 162 deletions

View File

@@ -17,7 +17,7 @@ export function sharedConfigWithPort({ port, framework }: ConfigParams): Playwri
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
reporter: process.env.CI ? 'dot' : 'list',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */