playwright 1.56.0-alpha-2025-08-28 → 1.56.0-alpha-2025-08-29

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.
@@ -216,7 +216,9 @@ function mergeConfigureEvents(configureEvents, rootDirOverride) {
216
216
  metadata: {},
217
217
  rootDir: "",
218
218
  version: "",
219
- workers: 0
219
+ workers: 0,
220
+ globalSetup: null,
221
+ globalTeardown: null
220
222
  };
221
223
  for (const event of configureEvents)
222
224
  config = mergeConfigs(config, event.params.config);
@@ -152,7 +152,9 @@ class TeleReporterEmitter {
152
152
  metadata: config.metadata,
153
153
  rootDir: config.rootDir,
154
154
  version: config.version,
155
- workers: config.workers
155
+ workers: config.workers,
156
+ globalSetup: config.globalSetup,
157
+ globalTeardown: config.globalTeardown
156
158
  };
157
159
  }
158
160
  _serializeProject(suite) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playwright",
3
- "version": "1.56.0-alpha-2025-08-28",
3
+ "version": "1.56.0-alpha-2025-08-29",
4
4
  "description": "A high-level API to automate web browsers",
5
5
  "repository": {
6
6
  "type": "git",
@@ -60,7 +60,7 @@
60
60
  },
61
61
  "license": "Apache-2.0",
62
62
  "dependencies": {
63
- "playwright-core": "1.56.0-alpha-2025-08-28"
63
+ "playwright-core": "1.56.0-alpha-2025-08-29"
64
64
  },
65
65
  "optionalDependencies": {
66
66
  "fsevents": "2.3.2"