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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. 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
- reporter: [
28
- ['list'], // You can combine multiple reporters
29
- ['playwright-ctrf-json-reporter', {}]
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 root of your project.
39
+ You'll find a JSON file named `ctrf-report.json` in the `ctrf` directory.
40
40
 
41
41
  ## Reporter Options
42
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playwright-ctrf-json-reporter",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {