@browsermation/test 0.0.38 → 0.0.39

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.38",
42261
+ version: "0.0.39",
42262
42262
  description: "The testing platform for Playwright by Browsermation.",
42263
42263
  main: "./dist/index.js",
42264
42264
  types: "./dist/index.d.ts",
package/dist/index.js CHANGED
@@ -632,6 +632,9 @@ async function fetchEndpoint() {
632
632
  reject(err);
633
633
  });
634
634
  res.on("data", async (chunk) => {
635
+ if (process.env.BM_DEBUG) {
636
+ console.log("Received chunk:", chunk.toString());
637
+ }
635
638
  try {
636
639
  const parsedData = JSON.parse(chunk.toString());
637
640
  if (parsedData.type === "ws-endpoint") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@browsermation/test",
3
- "version": "0.0.38",
3
+ "version": "0.0.39",
4
4
  "description": "The testing platform for Playwright by Browsermation.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",