Skip to content

Commit 129c168

Browse files
guesungkimyouknow
andauthored
test(mobile): use explicit expected values in isServer consistency test (#355)
Co-authored-by: 김윤호 yunho <kimyouknow@naver.com>
1 parent 506b48a commit 129c168

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

packages/mobile/src/utils/isServer/isServer.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ describe('isServer', () => {
1313
const secondCall = isServer();
1414
const thirdCall = isServer();
1515

16-
expect(firstCall).toBe(secondCall);
17-
expect(secondCall).toBe(thirdCall);
16+
expect(firstCall).toBe(false);
17+
expect(secondCall).toBe(false);
18+
expect(thirdCall).toBe(false);
1819
});
1920
});

0 commit comments

Comments
 (0)