playwright-ctrf-json-reporter 0.0.3 → 0.0.4

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.
@@ -20,7 +20,7 @@ declare class GenerateCtrfReport implements Reporter {
20
20
  readonly reporterConfigOptions: ReporterConfigOptions;
21
21
  readonly reporterName = "playwright-ctrf-json-reporter";
22
22
  readonly defaultOutputFile = "ctrf-report.json";
23
- readonly defaultOutputDir = ".";
23
+ readonly defaultOutputDir = "ctrf";
24
24
  private suite;
25
25
  private startTime;
26
26
  constructor(config?: Partial<ReporterConfigOptions>);
@@ -10,7 +10,7 @@ class GenerateCtrfReport {
10
10
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
11
11
  this.reporterName = 'playwright-ctrf-json-reporter';
12
12
  this.defaultOutputFile = 'ctrf-report.json';
13
- this.defaultOutputDir = '.';
13
+ this.defaultOutputDir = 'ctrf';
14
14
  this.reporterConfigOptions = {
15
15
  outputFile: (_a = config === null || config === void 0 ? void 0 : config.outputFile) !== null && _a !== void 0 ? _a : this.defaultOutputFile,
16
16
  outputDir: (_b = config === null || config === void 0 ? void 0 : config.outputDir) !== null && _b !== void 0 ? _b : this.defaultOutputDir,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playwright-ctrf-json-reporter",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {