Skip to content

Commit 0f28ba7

Browse files
committed
pls let me go
1 parent 9df0323 commit 0f28ba7

File tree

2 files changed

+3
-2
lines changed
  • dev-packages/browser-integration-tests/suites/replay/extendNetworkBreadcrumbs/fetch

2 files changed

+3
-2
lines changed

dev-packages/browser-integration-tests/suites/replay/extendNetworkBreadcrumbs/fetch/captureRequestHeaders/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ sentryTest('captures request headers as Headers instance', async ({ getLocalTest
281281
headers.append('X-Custom-Header', 'foo');
282282

283283
/* eslint-disable */
284-
fetch('http://localhost:7654/foo', {
284+
return fetch('http://localhost:7654/foo', {
285285
method: 'POST',
286286
headers,
287287
}).then(() => {

dev-packages/browser-integration-tests/suites/replay/extendNetworkBreadcrumbs/fetch/captureResponseBody/test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ sentryTest('captures text response body', async ({ getLocalTestPath, page, brows
9191
});
9292

9393
sentryTest('captures JSON response body', async ({ getLocalTestPath, page, browserName }) => {
94-
if (shouldSkipReplayTest()) {
94+
// These are a bit flaky on non-chromium browsers
95+
if (shouldSkipReplayTest() || browserName !== 'chromium') {
9596
sentryTest.skip();
9697
}
9798

0 commit comments

Comments
 (0)