From 183a1a1d082cef0b57b69e7fd22a71ea69471f2c Mon Sep 17 00:00:00 2001 From: Thomas Lebeau Date: Wed, 25 Sep 2024 15:41:44 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=20fix=20failing=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/e2e/scenario/sessionStore.scenario.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/scenario/sessionStore.scenario.ts b/test/e2e/scenario/sessionStore.scenario.ts index 7a6d7f2e42..ce8415c85d 100644 --- a/test/e2e/scenario/sessionStore.scenario.ts +++ b/test/e2e/scenario/sessionStore.scenario.ts @@ -52,8 +52,8 @@ describe('Session Stores', () => { const logsContext = await browser.execute(() => window.DD_LOGS?.getInternalContext()) const rumContext = await browser.execute(() => window.DD_RUM?.getInternalContext()) - expect(logsContext).not.toBeNull() - expect(rumContext).toBeNull() + expect(logsContext).toBeDefined() + expect(rumContext).not.toBeDefined() }) }) })