@browsermation/test 0.0.63-beta.6 → 0.0.63-beta.7

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 -1
  2. package/package.json +1 -1
package/dist/reporter.js CHANGED
@@ -121,7 +121,9 @@ var BrowsermationReporter = class {
121
121
  git_branch: await this.getCurrentBranch(),
122
122
  git_repo: await this.getCurrentRepo(),
123
123
  totalTests: suite.allTests().length,
124
- cpus: (0, import_node_os.cpus)().length
124
+ cpus: (0, import_node_os.cpus)().length,
125
+ playwright_version: _config.metadata?.playwrightVersion || "unknown",
126
+ node_version: process.version
125
127
  };
126
128
  this.log(`${JSON.stringify(data)}
127
129
  `);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@browsermation/test",
3
- "version": "0.0.63-beta.6",
3
+ "version": "0.0.63-beta.7",
4
4
  "description": "The testing platform for Playwright by Browsermation.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",