File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -41,14 +41,19 @@ export default defineConfig({
4141 retries : process . env . CI ? 2 : 0 ,
4242 /* Opt out of parallel tests on CI. */
4343 workers : process . env . CI ? 1 : undefined ,
44- /* Reporter to use. See https://playwright.dev/docs/test-reporters */
44+
45+ /* Reporter to use. See https://playwright.dev/docs/test-reporters
46+ * Use `--reporter [type]` to override for more information while debugging tests.
47+ * e.g., `npx playwright test --reporter list [args]`
48+ */
4549 reporter : process . env . CI
4650 ? [
4751 [ "html" , { outputFolder : "playwright-report" } ] ,
4852 [ "json" , { outputFile : "results.json" } ] ,
4953 [ "line" ] ,
5054 ]
5155 : [ [ "line" ] ] ,
56+
5257 /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
5358 use : {
5459 /* Base URL to use in actions like `await page.goto('/')`. */
You can’t perform that action at this time.
0 commit comments