@uuv/playwright 2.13.0 → 2.13.1

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.
@@ -99,7 +99,7 @@ class UUVCliPlaywrightRunner {
99
99
  runPlaywright(options) {
100
100
  const configFile = `${this.projectDir}/playwright.config.ts`;
101
101
  try {
102
- let reporter = "--reporter=@uuv/playwright/uuv-playwright-reporter";
102
+ let reporter = options.command === "e2e" ? "--reporter=@uuv/playwright/uuv-playwright-reporter" : "";
103
103
  if (options.report?.junit.enabled) {
104
104
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
105
105
  // @ts-ignore
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uuv/playwright",
3
- "version": "2.13.0",
3
+ "version": "2.13.1",
4
4
  "type": "commonjs",
5
5
  "author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
6
6
  "description": "A solution to facilitate the writing and execution of E2E tests understandable by any human being using cucumber(BDD) and playwright",