Skip to content

Instantly share code, notes, and snippets.

@iivanovw7
Forked from alfonsomunozpomer/highcharts.js
Created March 18, 2021 06:00
Show Gist options
  • Save iivanovw7/da91d369591f7059d253e70e218ec466 to your computer and use it in GitHub Desktop.
Save iivanovw7/da91d369591f7059d253e70e218ec466 to your computer and use it in GitHub Desktop.
A Highcharts mock for Jest (place it in yout __mocks__ directory) to test components that depend on React Highcharts
const highcharts = jest.genMockFromModule(`highcharts`)
// So that Boost and Exporting modules don’t complain when running tests
highcharts.getOptions = () => ({ plotOptions: {} })
module.exports = highcharts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment