Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gugiserman/06412c0f3500e87adeebb1a236d6b410 to your computer and use it in GitHub Desktop.
Save gugiserman/06412c0f3500e87adeebb1a236d6b410 to your computer and use it in GitHub Desktop.
Bypass recharts ResponsiveContainer width and height warnings in jest
// jest.setup.js
const MockResponsiveContainer = props => <div {...props} />
jest.mock('recharts', () => ({
...jest.requireActual('recharts'),
ResponsiveContainer: MockResponsiveContainer,
}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment