From b4b4a2b97dc494ffe58028cf9bb803d88a189ad0 Mon Sep 17 00:00:00 2001 From: Billy Vong Date: Mon, 28 Aug 2023 16:09:18 -0400 Subject: [PATCH] skip test for webkit --- .../suites/replay/sessionExpiry/test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/browser-integration-tests/suites/replay/sessionExpiry/test.ts b/packages/browser-integration-tests/suites/replay/sessionExpiry/test.ts index 1e0b5d128dea..3b78c859b8ae 100644 --- a/packages/browser-integration-tests/suites/replay/sessionExpiry/test.ts +++ b/packages/browser-integration-tests/suites/replay/sessionExpiry/test.ts @@ -14,8 +14,8 @@ import { // Session should expire after 2s - keep in sync with init.js const SESSION_TIMEOUT = 2000; -sentryTest('handles an expired session', async ({ forceFlushReplay, getLocalTestPath, page }) => { - if (shouldSkipReplayTest()) { +sentryTest('handles an expired session', async ({ browserName, forceFlushReplay, getLocalTestPath, page }) => { + if (shouldSkipReplayTest() || browserName === 'webkit') { sentryTest.skip(); }