Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@playwright/test": "~1.56.0",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/astro": "latest || *",
"astro": "^6.0.0"
"astro": "^6.0.6"
},
"volta": {
"node": "22.22.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import { expect, test } from '@playwright/test';
import { waitForTransaction } from '@sentry-internal/test-utils';

// Skipping this test FOR NOW because there's a known bug in Astro 6.0.2 that causes
// server-islands to not work correctly with the node adapter:
// https://github.com/withastro/astro/issues/15753
test.describe.skip('tracing in static routes with server islands', () => {
test.describe('tracing in static routes with server islands', () => {
test('only sends client pageload transaction and server island endpoint transaction', async ({ page }) => {
const clientPageloadTxnPromise = waitForTransaction('astro-6', txnEvent => {
return txnEvent.transaction === '/server-island';
Expand Down
Loading