@browsermation/test 0.0.42 → 0.0.43

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/dist/bin/cli.js CHANGED
@@ -42258,7 +42258,7 @@ var {
42258
42258
  // package.json
42259
42259
  var package_default = {
42260
42260
  name: "@browsermation/test",
42261
- version: "0.0.42",
42261
+ version: "0.0.43",
42262
42262
  description: "The testing platform for Playwright by Browsermation.",
42263
42263
  main: "./dist/index.js",
42264
42264
  types: "./dist/index.d.ts",
@@ -46689,7 +46689,9 @@ function startTunnel(tunnelProcess, options) {
46689
46689
  process.exit();
46690
46690
  });
46691
46691
  tunnelProcess?.stdout?.on("data", (data) => {
46692
- console.log(`stdout: ${data}`);
46692
+ if (process.env.BM_DEBUG) {
46693
+ console.log(`stdout: ${data}`);
46694
+ }
46693
46695
  });
46694
46696
  tunnelProcess?.stderr?.on("data", (data) => {
46695
46697
  console.error(`stderr: ${data}`);
@@ -1,2 +1,2 @@
1
1
  import { PlaywrightTestConfig } from 'playwright/test';
2
- export declare function defineConfig<T extends PlaywrightTestConfig>(config: T): Promise<T & PlaywrightTestConfig>;
2
+ export declare function defineConfig<T>(config: PlaywrightTestConfig<T>): Promise<PlaywrightTestConfig<T>>;
package/dist/index.js CHANGED
@@ -573,7 +573,9 @@ function startTunnel(tunnelProcess2, options) {
573
573
  process.exit();
574
574
  });
575
575
  tunnelProcess2?.stdout?.on("data", (data) => {
576
- console.log(`stdout: ${data}`);
576
+ if (process.env.BM_DEBUG) {
577
+ console.log(`stdout: ${data}`);
578
+ }
577
579
  });
578
580
  tunnelProcess2?.stderr?.on("data", (data) => {
579
581
  console.error(`stderr: ${data}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@browsermation/test",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "description": "The testing platform for Playwright by Browsermation.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",