diff --git a/packages/mobile/src/utils/isServer/isServer.test.ts b/packages/mobile/src/utils/isServer/isServer.test.ts index 9c589d76..a529fd5c 100644 --- a/packages/mobile/src/utils/isServer/isServer.test.ts +++ b/packages/mobile/src/utils/isServer/isServer.test.ts @@ -13,7 +13,8 @@ describe('isServer', () => { const secondCall = isServer(); const thirdCall = isServer(); - expect(firstCall).toBe(secondCall); - expect(secondCall).toBe(thirdCall); + expect(firstCall).toBe(false); + expect(secondCall).toBe(false); + expect(thirdCall).toBe(false); }); });