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({
41
41
retries : process . env . CI ? 2 : 0 ,
42
42
/* Opt out of parallel tests on CI. */
43
43
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
+ */
45
49
reporter : process . env . CI
46
50
? [
47
51
[ "html" , { outputFolder : "playwright-report" } ] ,
48
52
[ "json" , { outputFile : "results.json" } ] ,
49
53
[ "line" ] ,
50
54
]
51
55
: [ [ "line" ] ] ,
56
+
52
57
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
53
58
use : {
54
59
/* Base URL to use in actions like `await page.goto('/')`. */
You can’t perform that action at this time.
0 commit comments