Skip to content

Commit

Permalink
change names
Browse files Browse the repository at this point in the history
  • Loading branch information
JKobrynski committed Feb 1, 2024
1 parent c190cff commit 4bbbdcd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __mocks__/react-native-dev-menu.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import type {addItem} from 'react-native-dev-menu';

type ReactNativeDevMenu = {
type ReactNativeDevMenuMock = {
addItem: typeof addItem;
};

const ReactNativeDevMenuMock: ReactNativeDevMenu = {
const reactNativeDevMenuMock: ReactNativeDevMenuMock = {
addItem: jest.fn(),
};

export default ReactNativeDevMenuMock;
export default reactNativeDevMenuMock;

0 comments on commit 4bbbdcd

Please sign in to comment.