Skip to content

Commit 13502f5

Browse files
committed
skip flaky webkit test
1 parent 8efa80b commit 13502f5

File tree

1 file changed

+4
-2
lines changed
  • packages/browser-integration-tests/suites/replay/sessionInactive

1 file changed

+4
-2
lines changed

packages/browser-integration-tests/suites/replay/sessionInactive/test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ import {
1414
// Session should be paused after 2s - keep in sync with init.js
1515
const SESSION_PAUSED = 2000;
1616

17-
sentryTest('handles an inactive session', async ({ getLocalTestPath, page }) => {
18-
if (shouldSkipReplayTest()) {
17+
sentryTest('handles an inactive session', async ({ getLocalTestPath, page, browserName }) => {
18+
// webkit is a bit flakey here, the ids are sometimes off by <number of total
19+
// nodes>, so seems like there is a race condition with checkout?
20+
if (shouldSkipReplayTest() || browserName === 'webkit') {
1921
sentryTest.skip();
2022
}
2123

0 commit comments

Comments
 (0)