@browsermation/test 0.0.65 → 0.0.67

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/dist/reporter.js +3 -0
  2. package/package.json +1 -1
package/dist/reporter.js CHANGED
@@ -159,6 +159,9 @@ var BrowsermationReporter = class {
159
159
  );
160
160
  return;
161
161
  }
162
+ if (process.env.BM_BROWSER_RUN_ID) {
163
+ data.browser_run_id = process.env.BM_BROWSER_RUN_ID;
164
+ }
162
165
  if (!this.apiToken) {
163
166
  this.log("API token not set. Skipping sending data to Browsermation.");
164
167
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@browsermation/test",
3
- "version": "0.0.65",
3
+ "version": "0.0.67",
4
4
  "description": "The testing platform for Playwright by Browsermation.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",