Skip to content

Commit 8f5de3e

Browse files
authored
test(astro): Fix Astro 4 e2e test (#14816)
In our Astro-4 E2E test app, Astro's Node adapter was pinned to a bad version that didn'T work correctly with newer Astro versions. We pinned the Astro version a while ago in #14030 to unblock CI but looks like we just didn't follow up with investigating what caused the issue back then. This came up again when dependabot tried to bump the Astro version in #14781 and #14807 and as a result #14808 was opened. This PR now - bumps the Node adapter version which makes newer Astro version function properly again - updates `astro` to the latest v4 version (which is why I closed #14807) closes #14808
1 parent 25874a9 commit 8f5de3e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

dev-packages/e2e-tests/test-applications/astro-4/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
},
1414
"dependencies": {
1515
"@astrojs/check": "0.9.2",
16-
"@astrojs/node": "8.3.2",
16+
"@astrojs/node": "8.3.4",
1717
"@playwright/test": "^1.46.0",
1818
"@sentry/astro": "* || latest",
1919
"@sentry-internal/test-utils": "link:../../../test-utils",
2020
"@spotlightjs/astro": "2.1.6",
21-
"astro": "4.13.3",
21+
"astro": "4.16.18",
2222
"typescript": "^5.5.4"
2323
},
2424
"devDependencies": {
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
/// <reference path="../.astro/types.d.ts" />
12
/// <reference types="astro/client" />

0 commit comments

Comments
 (0)