Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAlec committed Aug 9, 2024
1 parent de32e23 commit d99ba5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wallet/components/WalletDropdownFundLink.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describe('WalletDropdownFundLink', () => {
// Check if window.open was called with the correct arguments
expect(mockOpen).toHaveBeenCalledWith(
expect.stringContaining('http://keys.coinbase.com/funding'),
'Coinbase Fund wallet',
'Coinbase Fund Wallet',
expect.stringContaining('width=600,height=700'),
);

Expand Down Expand Up @@ -84,7 +84,7 @@ describe('WalletDropdownFundLink', () => {
const expectedTop = (768 - height) / 2;
expect(mockOpen).toHaveBeenCalledWith(
expect.stringContaining('http://keys.coinbase.com/funding'),
'Coinbase Fund wallet',
'Coinbase Fund Wallet',
expect.stringContaining(
`width=${width},height=${height},resizable,scrollbars=yes,status=1,left=${expectedLeft},top=${expectedTop}`,
),
Expand Down

0 comments on commit d99ba5b

Please sign in to comment.