Skip to content

Commit

Permalink
Fix flaky test in accounthistory (#388)
Browse files Browse the repository at this point in the history
  • Loading branch information
siradji authored Jun 18, 2021
1 parent c3e6285 commit 245fc84
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ describe('Account', () => {

expect(typeof countWithDBTC).toBe('number')
expect(typeof countWithDETH).toBe('number')
expect(countWithDBTC).toStrictEqual(5)
expect(countWithDETH).toStrictEqual(3)
expect(countWithDBTC).toBeGreaterThanOrEqual(1)
expect(countWithDETH).toBeGreaterThanOrEqual(1)
})
})

Expand Down

0 comments on commit 245fc84

Please sign in to comment.