Skip to content

Commit 96912b3

Browse files
committed
test(astro): Re-enable server island tracing e2e test in Astro 6
1 parent ae7206f commit 96912b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@playwright/test": "~1.56.0",
1717
"@sentry-internal/test-utils": "link:../../../test-utils",
1818
"@sentry/astro": "latest || *",
19-
"astro": "^6.0.0"
19+
"astro": "^6.0.6"
2020
},
2121
"volta": {
2222
"node": "22.22.0",

dev-packages/e2e-tests/test-applications/astro-6/tests/tracing.serverIslands.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { waitForTransaction } from '@sentry-internal/test-utils';
44
// Skipping this test FOR NOW because there's a known bug in Astro 6.0.2 that causes
55
// server-islands to not work correctly with the node adapter:
66
// https://github.com/withastro/astro/issues/15753
7-
test.describe.skip('tracing in static routes with server islands', () => {
7+
test.describe('tracing in static routes with server islands', () => {
88
test('only sends client pageload transaction and server island endpoint transaction', async ({ page }) => {
99
const clientPageloadTxnPromise = waitForTransaction('astro-6', txnEvent => {
1010
return txnEvent.transaction === '/server-island';

0 commit comments

Comments
 (0)