diff --git a/__mocks__/charts.js b/__mocks__/charts.js deleted file mode 100644 index 89dbee4b2..000000000 --- a/__mocks__/charts.js +++ /dev/null @@ -1,14 +0,0 @@ -// __mocks__/chart.js -const Chart = jest.fn().mockImplementation((context, config) => { - console.log('Chart constructor called'); - return { - data: config.data, - options: config.options, - resize: jest.fn(), - update: jest.fn(), - }; -}); - -module.exports = { - Chart, -};