Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
alissacrane-cb committed Aug 14, 2024
1 parent 62c78f8 commit 9302c6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/wallet/components/WalletMenu.test.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import '@testing-library/jest-dom';
import { render, screen } from '@testing-library/react';
import { useAccount } from 'wagmi';
import { WalletMenu } from './WalletMenu';
import useBreakpoints from '../../useBreakpoints';
import { WalletMenu } from './WalletMenu';

vi.mock('wagmi', () => ({
useAccount: vi.fn(),
Expand Down
6 changes: 3 additions & 3 deletions src/wallet/components/WalletWithMobileDrawer.test.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { fireEvent, render, screen } from '@testing-library/react';
import { beforeEach, describe, expect, it, vi } from 'vitest';
import { useAccount } from 'wagmi';
import useBreakpoints from '../../useBreakpoints';
import { ConnectWallet } from './ConnectWallet';
import { WalletWithMobileDrawer } from './WalletWithMobileDrawer';
import { WalletMenu } from './WalletMenu';
import { useWalletContext } from './WalletProvider';
import { useAccount } from 'wagmi';
import useBreakpoints from '../../useBreakpoints';
import { WalletWithMobileDrawer } from './WalletWithMobileDrawer';

vi.mock('./WalletProvider', () => ({
useWalletContext: vi.fn(),
Expand Down

0 comments on commit 9302c6b

Please sign in to comment.