Skip to content

Commit 6be123e

Browse files
authored
test(replay): skip captures multiple multi clicks on firefox and webkit (#8514)
1 parent 3d592c0 commit 6be123e

File tree

1 file changed

+3
-2
lines changed
  • packages/browser-integration-tests/suites/replay/slowClick/multiClick

1 file changed

+3
-2
lines changed

packages/browser-integration-tests/suites/replay/slowClick/multiClick/test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,9 @@ sentryTest('captures multi click when not detecting slow click', async ({ getLoc
6464
]);
6565
});
6666

67-
sentryTest('captures multiple multi clicks', async ({ getLocalTestUrl, page, forceFlushReplay }) => {
68-
if (shouldSkipReplayTest()) {
67+
sentryTest('captures multiple multi clicks', async ({ getLocalTestUrl, page, forceFlushReplay, browserName }) => {
68+
// This test seems to only be flakey on firefox and webkit
69+
if (shouldSkipReplayTest() || ['firefox', 'webkit'].includes(browserName)) {
6970
sentryTest.skip();
7071
}
7172

0 commit comments

Comments
 (0)