@browsermation/test 0.0.63-beta.5 → 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 +5 -2
  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
  `);
@@ -148,7 +150,8 @@ var BrowsermationReporter = class {
148
150
  file: test.location.file,
149
151
  timestamp: Date.now(),
150
152
  free_memory: (0, import_node_os.freemem)(),
151
- total_memory: (0, import_node_os.totalmem)()
153
+ total_memory: (0, import_node_os.totalmem)(),
154
+ project: test.parent.project.name
152
155
  };
153
156
  this.log(`${JSON.stringify(data)}
154
157
  `);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@browsermation/test",
3
- "version": "0.0.63-beta.5",
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",