We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 506b48a commit 129c168Copy full SHA for 129c168
1 file changed
packages/mobile/src/utils/isServer/isServer.test.ts
@@ -13,7 +13,8 @@ describe('isServer', () => {
13
const secondCall = isServer();
14
const thirdCall = isServer();
15
16
- expect(firstCall).toBe(secondCall);
17
- expect(secondCall).toBe(thirdCall);
+ expect(firstCall).toBe(false);
+ expect(secondCall).toBe(false);
18
+ expect(thirdCall).toBe(false);
19
});
20
0 commit comments