Skip to content

Commit

Permalink
feat(extrnalURl): add test refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
evgen-kent committed Feb 16, 2024
1 parent 3168dbc commit b6c05eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
});
});

0 comments on commit b6c05eb

Please sign in to comment.