Skip to content

Commit

Permalink
FIx test
Browse files Browse the repository at this point in the history
  • Loading branch information
jorbuedo committed Apr 18, 2024
1 parent db1faa9 commit 03e79e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/wallet-mobile/src/yoroi-wallets/utils/timeUtils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe('formatTimeSpan', () => {
expect(formatTimeSpan(1000 * 60)).toBe('00d : 00h : 01m')
expect(formatTimeSpan(1000 * 60 * 59)).toBe('00d : 00h : 59m')
expect(formatTimeSpan(1000 * 60 * 60)).toBe('00d : 01h : 00m')
expect(formatTimeSpan(1000 * 85)).toBe('00d : 01h : 25m')
expect(formatTimeSpan(1000 * 8595)).toBe('05d : 23h : 15m')
expect(formatTimeSpan(1000 * 60 * 85)).toBe('00d : 01h : 25m')
expect(formatTimeSpan(1000 * 60 * 8595)).toBe('05d : 23h : 15m')
})
})

0 comments on commit 03e79e0

Please sign in to comment.