playwright 1.54.0-alpha-2025-06-29 → 1.54.0-alpha-2025-07-01

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.

Potentially problematic release.


This version of playwright might be problematic. Click here for more details.

@@ -334,7 +334,7 @@ class IdsPatcher {
334
334
  case "onStepBegin":
335
335
  case "onStepEnd":
336
336
  case "onStdIO":
337
- params.testId = this._mapTestId(params.testId);
337
+ params.testId = params.testId ? this._mapTestId(params.testId) : void 0;
338
338
  return;
339
339
  case "onTestEnd":
340
340
  params.test.testId = this._mapTestId(params.test.testId);
@@ -399,8 +399,7 @@ async function runUIMode(configFile, configCLIOverrides, options) {
399
399
  headless: (0, import_utils.isUnderTest)() && process.env.PWTEST_HEADED_FOR_TEST !== "1",
400
400
  persistentContextOptions: {
401
401
  handleSIGINT: false,
402
- channel,
403
- timeout: 0
402
+ channel
404
403
  }
405
404
  });
406
405
  page.on("close", () => cancelPromise.resolve());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playwright",
3
- "version": "1.54.0-alpha-2025-06-29",
3
+ "version": "1.54.0-alpha-2025-07-01",
4
4
  "description": "A high-level API to automate web browsers",
5
5
  "repository": {
6
6
  "type": "git",
@@ -56,7 +56,7 @@
56
56
  },
57
57
  "license": "Apache-2.0",
58
58
  "dependencies": {
59
- "playwright-core": "1.54.0-alpha-2025-06-29"
59
+ "playwright-core": "1.54.0-alpha-2025-07-01"
60
60
  },
61
61
  "optionalDependencies": {
62
62
  "fsevents": "2.3.2"