Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAlec committed Aug 9, 2024
1 parent e9eef95 commit 98c25dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/wallet/components/WalletDropdownFundLink.test.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { fireEvent, render, screen } from '@testing-library/react';
import { describe, expect, it, vi } from 'vitest';
import { expect, it, vi } from 'vitest';
import { version } from '../../version';
import { WalletDropdownFundLink } from './WalletDropdownFundLink';

const FUNDING_URL =
'http://keys.coinbase.com/funding?dappName=&dappUrl=http://localhost:3000/';
const FUNDING_URL = `http://keys.coinbase.com/funding?dappName=&dappUrl=http://localhost:3000/onchainkit=${version}`;

describe('WalletDropdownFundLink', () => {
it('renders correctly with default props', () => {
Expand Down

0 comments on commit 98c25dd

Please sign in to comment.