Skip to content

Commit

Permalink
Merge branch 'dev' into fix/win-scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
AngeliaQ authored Jan 27, 2022
2 parents 8751dc2 + 29a83cc commit ba58321
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .yarn/versions/4b7ef94c.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declined:
- helios-background
4 changes: 2 additions & 2 deletions packages/background/src/index.integration.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ describe('integration test', function () {
).result

expect(db.getAccount().length).toBe(1)
await waitForExpect(() => expect(db.getAddress().length).toBe(3))
await waitForExpect(() => expect(db.getAddress().length).toBe(3), 20000)
const addrs = db.getAddress()
expect(addrs[addrs.length - 1].hex).toBe(CFX_ACCOUNTS[0].address)
expect(addrs[addrs.length - 1].value).toBe(CFX_ACCOUNTS[0].base32)
Expand Down Expand Up @@ -363,7 +363,7 @@ describe('integration test', function () {
).result

expect(db.getAccount().length).toBe(1)
await waitForExpect(() => expect(db.getAddress().length).toBe(3))
await waitForExpect(() => expect(db.getAddress().length).toBe(3), 20000)
const addrs = db.getAddress()
expect(addrs[addrs.length - 1].hex).toBe(ETH_ACCOUNTS[0].address)
expect(db.findAddress({networkId})[0]).toBe(addrs[addrs.length - 1].eid)
Expand Down

0 comments on commit ba58321

Please sign in to comment.