playwright 1.55.0-alpha-1754048396000 → 1.55.0-alpha-2025-08-02

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.
@@ -49,6 +49,7 @@ const defineConfig = (...configs) => {
49
49
  let result = configs[0];
50
50
  for (let i = 1; i < configs.length; ++i) {
51
51
  const config = configs[i];
52
+ const prevProjects = result.projects;
52
53
  result = {
53
54
  ...result,
54
55
  ...config,
@@ -75,7 +76,7 @@ const defineConfig = (...configs) => {
75
76
  for (const project of config.projects || [])
76
77
  projectOverrides.set(project.name, project);
77
78
  const projects = [];
78
- for (const project of result.projects || []) {
79
+ for (const project of prevProjects || []) {
79
80
  const projectOverride = projectOverrides.get(project.name);
80
81
  if (projectOverride) {
81
82
  projects.push({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playwright",
3
- "version": "1.55.0-alpha-1754048396000",
3
+ "version": "1.55.0-alpha-2025-08-02",
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.55.0-alpha-1754048396000"
59
+ "playwright-core": "1.55.0-alpha-2025-08-02"
60
60
  },
61
61
  "optionalDependencies": {
62
62
  "fsevents": "2.3.2"
package/types/test.d.ts CHANGED
@@ -305,7 +305,7 @@ interface TestProject<TestArgs = {}, WorkerArgs = {}> {
305
305
  grep?: RegExp|Array<RegExp>;
306
306
 
307
307
  /**
308
- * Filter to only run tests with a title **not** matching one of the patterns. This is the opposite of
308
+ * Filter to only run tests with a title **not** matching any of the patterns. This is the opposite of
309
309
  * [testProject.grep](https://playwright.dev/docs/api/class-testproject#test-project-grep). Also available globally
310
310
  * and in the [command line](https://playwright.dev/docs/test-cli) with the `--grep-invert` option.
311
311
  *