Skip to content

Instantly share code, notes, and snippets.

@jsakas
Last active June 19, 2019 18:04
Show Gist options
  • Save jsakas/0475ee3e69eed65c517c8912924a2a06 to your computer and use it in GitHub Desktop.
Save jsakas/0475ee3e69eed65c517c8912924a2a06 to your computer and use it in GitHub Desktop.
jest.mock('react-beautiful-dnd', () => ({
Droppable: ({ children }) => children({
draggableProps: {
style: {},
},
innerRef: jest.fn(),
}, {}),
Draggable: ({ children }) => children({
draggableProps: {
style: {},
},
innerRef: jest.fn(),
}, {}),
DragDropContext: ({ children }) => children,
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment