Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
doerfli committed Sep 30, 2024
1 parent d90849d commit 9a9d4fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/config/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const DEPARTURE_DATE_DAYS_MIN = parseInt(process.env.NEXT_PUBLIC_DEPARTUR
export const DEPARTURE_DATE_DAYS_MAX = parseInt(process.env.NEXT_PUBLIC_DEPARTURE_DATE_MAX_DAYS || '60');
export const DEPARTURE_DATE_DATE_FROM = process.env.NEXT_PUBLIC_DEPARTURE_DATE_DATE_FROM || '';
export const DEPARTURE_DATE_DATE_TO = process.env.NEXT_PUBLIC_DEPARTURE_DATE_DATE_TO || '';
export const PREMIUM_TOKEN_SYMBOL = process.env.NEXT_PUBLIC_PREMIUM_TOKEN_SYMBOL || 'USDC';
export const PREMIUM_TOKEN_SYMBOL = process.env.NEXT_PUBLIC_PREMIUM_TOKEN_SYMBOL || 'FUSD';
export const PREMIUM_TOKEN_DECIMALS = parseInt(process.env.NEXT_PUBLIC_PREMIUM_TOKEN_DECIMALS || '6');


2 changes: 1 addition & 1 deletion tests/components/TopBar/wallet.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ describe('Wallet', () => {

expect(screen.getByText('MockJazzicon')).toBeInTheDocument();
expect(screen.getByText('0x2CeC…4729')).toBeInTheDocument();
expect(screen.getByText('USDC 72.58')).toBeInTheDocument();
expect(screen.getByText('FUSD 72.58')).toBeInTheDocument();
})

it('disconnects wallet', () => {
Expand Down

0 comments on commit 9a9d4fd

Please sign in to comment.