From d99ba5bc7c92e4b05d6a96cdf255c7d3b505d29f Mon Sep 17 00:00:00 2001 From: Alec Chen <93971719+0xAlec@users.noreply.github.com> Date: Fri, 9 Aug 2024 14:07:56 -0700 Subject: [PATCH] fix --- src/wallet/components/WalletDropdownFundLink.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/components/WalletDropdownFundLink.test.tsx b/src/wallet/components/WalletDropdownFundLink.test.tsx index 0f453a3875..30f703a54f 100644 --- a/src/wallet/components/WalletDropdownFundLink.test.tsx +++ b/src/wallet/components/WalletDropdownFundLink.test.tsx @@ -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'), ); @@ -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}`, ),