Skip to content

Commit

Permalink
address graphite reviewer comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dliu27 committed Dec 11, 2024
1 parent 0e4a623 commit 2bbef2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ jest.mock('react-router-dom', () => ({

// Mocking useTrackEvent
jest.mock('../../app/analytics', () => ({
useTrackEvent: jest.fn(() => {
jest.fn();
}),
useTrackEvent: jest.fn(() => jest.fn()),
}));

const onCloseMock = jest.fn();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ jest.mock('react-router-dom', () => ({

// Mocking useTrackEvent
jest.mock('../../app/analytics', () => ({
useTrackEvent: jest.fn(() => {
jest.fn();
}),
useTrackEvent: jest.fn(() => jest.fn()),
}));

const onCloseMock = jest.fn();
Expand Down

0 comments on commit 2bbef2f

Please sign in to comment.