Skip to content

Commit

Permalink
πŸ‘Œ fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-lebeau committed Sep 25, 2024
1 parent 2cee9e1 commit 183a1a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/scenario/sessionStore.scenario.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
})
})
})

0 comments on commit 183a1a1

Please sign in to comment.