From b6c05eba73546982037bb1ef927c1d946d66bff9 Mon Sep 17 00:00:00 2001 From: Evgen Shmat Date: Fri, 16 Feb 2024 09:35:26 +0300 Subject: [PATCH] feat(extrnalURl): add test refactor --- test/utils.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/utils.test.ts b/test/utils.test.ts index a9dcf21..25c56c7 100644 --- a/test/utils.test.ts +++ b/test/utils.test.ts @@ -100,7 +100,7 @@ describe('getAppId', () => { expect(getAppId('ios', undefined)).toBe(null); }); - it(`should return ${ANDROID_APP_ID} for android`, () => { - expect(getAppId('android')).toBe(ANDROID_APP_ID); + it(`should return ${atob(ANDROID_APP_ID)} for android`, () => { + expect(getAppId('android')).toBe(atob(ANDROID_APP_ID)); }); });