Skip to content

Commit

Permalink
- Fix typo and test
Browse files Browse the repository at this point in the history
  • Loading branch information
naorye2 committed Apr 24, 2024
1 parent f6d9d26 commit c6b2321
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/__test__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ describe("getDiscoveryWallets()", () => {
it("should return all discovery wallets", async () => {
const sn = getWallet({})
const discoveryWallets = await sn.getDiscoveryWallets()
expect(discoveryWallets.length).toBe(3)
expect(discoveryWallets.length).toBe(4)
expect(discoveryWallets.map((w) => w.id)).contains(ArgentXMock.id)
expect(discoveryWallets.map((w) => w.id)).contains(BraavosMock.id)
expect(discoveryWallets.map((w) => w.id)).contains(OKXMock.id)
Expand Down
3 changes: 2 additions & 1 deletion packages/core/src/discovery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ const wallets: WalletProvider[] = [
"https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn",
firefox: "https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/",
edge: "https://microsoftedge.microsoft.com/addons/detail/metamask/ejbalbakoplchlghecdalmeeeajnimhm?hl=en-US",
}
},
},
]

export default wallets

0 comments on commit c6b2321

Please sign in to comment.