playwright-ctrf-json-reporter 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,10 +24,10 @@ npm install --save-dev playwright-ctrf-json-reporter
|
|
|
24
24
|
Add the reporter to your playwright.config.ts file:
|
|
25
25
|
|
|
26
26
|
```javascript
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
reporter: [
|
|
28
|
+
['list'], // You can combine multiple reporters
|
|
29
|
+
['playwright-ctrf-json-reporter', {}]
|
|
30
|
+
],
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
Run your tests:
|
|
@@ -36,7 +36,7 @@ Run your tests:
|
|
|
36
36
|
npx playwright test
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
-
You'll find a JSON file named `ctrf-report.json` in the
|
|
39
|
+
You'll find a JSON file named `ctrf-report.json` in the `ctrf` directory.
|
|
40
40
|
|
|
41
41
|
## Reporter Options
|
|
42
42
|
|