From 2c6d9c7c63a5939d7a382ac4e535e530b6bb4ac9 Mon Sep 17 00:00:00 2001 From: Kuesung Park Date: Wed, 1 Apr 2026 09:47:36 +0900 Subject: [PATCH] test(mobile): use explicit expected values in isServer consistency test --- packages/mobile/src/utils/isServer/isServer.test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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); }); });