We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8efa80b commit 13502f5Copy full SHA for 13502f5
packages/browser-integration-tests/suites/replay/sessionInactive/test.ts
@@ -14,8 +14,10 @@ import {
14
// Session should be paused after 2s - keep in sync with init.js
15
const SESSION_PAUSED = 2000;
16
17
-sentryTest('handles an inactive session', async ({ getLocalTestPath, page }) => {
18
- if (shouldSkipReplayTest()) {
+sentryTest('handles an inactive session', async ({ getLocalTestPath, page, browserName }) => {
+ // 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') {
21
sentryTest.skip();
22
}
23
0 commit comments