Skip to content

Commit

Permalink
test(replay): skip captures multiple multi clicks on firefox and we…
Browse files Browse the repository at this point in the history
…bkit (#8514)
  • Loading branch information
AbhiPrasad committed Jul 12, 2023
1 parent 3d592c0 commit 6be123e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ sentryTest('captures multi click when not detecting slow click', async ({ getLoc
]);
});

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

Expand Down

0 comments on commit 6be123e

Please sign in to comment.