Skip to content

Commit 0656e11

Browse files
chore(deps): update playwright (#13715)
Co-authored-by: Tee Ming <[email protected]>
1 parent 43ed843 commit 0656e11

File tree

8 files changed

+39
-30
lines changed

8 files changed

+39
-30
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@sveltejs/eslint-config": "^8.1.0",
2727
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
2828
"eslint": "^9.6.0",
29-
"playwright": "^1.44.1",
29+
"@playwright/test": "catalog:",
3030
"prettier": "^3.1.1",
3131
"prettier-plugin-svelte": "^3.1.2",
3232
"typescript-eslint": "^8.24.0"
@@ -43,4 +43,4 @@
4343
"workerd"
4444
]
4545
}
46-
}
46+
}

packages/adapter-cloudflare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"worktop": "0.8.0-next.18"
4646
},
4747
"devDependencies": {
48-
"@playwright/test": "^1.44.1",
48+
"@playwright/test": "catalog:",
4949
"@sveltejs/kit": "workspace:^",
5050
"@types/node": "^18.19.48",
5151
"esbuild": "^0.25.2",

packages/adapter-static/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"test": "pnpm -r --workspace-concurrency 1 --filter=\"./test/**\" test"
4040
},
4141
"devDependencies": {
42-
"@playwright/test": "^1.44.1",
42+
"@playwright/test": "catalog:",
4343
"@sveltejs/kit": "workspace:^",
4444
"@sveltejs/vite-plugin-svelte": "^5.0.1",
4545
"@types/node": "^18.19.48",

packages/kit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"sirv": "^3.0.0"
3232
},
3333
"devDependencies": {
34-
"@playwright/test": "^1.44.1",
34+
"@playwright/test": "catalog:",
3535
"@sveltejs/vite-plugin-svelte": "^5.0.1",
3636
"@types/connect": "^3.4.38",
3737
"@types/node": "^18.19.48",

packages/kit/test/apps/basics/test/cross-platform/test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ test.describe('CSS', () => {
3434

3535
test('applies styles correctly', async ({ page, get_computed_style }) => {
3636
await page.goto('/css');
37-
37+
// without this assertion, the WebKit browser seems to close before we can compute the styles
38+
await expect(page.locator('.styled')).toBeVisible();
3839
check_styles(get_computed_style);
3940
});
4041

packages/kit/test/apps/writes/src/routes/new-route/zzzz1662642734866/+page.svelte

Lines changed: 0 additions & 1 deletion
This file was deleted.

pnpm-lock.yaml

Lines changed: 29 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ packages:
99
- 'packages/create-svelte/templates/*'
1010
- '!.test-tmp/**'
1111
- 'playgrounds/*'
12+
13+
catalog:
14+
"@playwright/test": "^1.51.1"

0 commit comments

Comments
 (0)