From abcbb0eb7ad8f0cfffcbe4a810783c7152ffe5cd Mon Sep 17 00:00:00 2001 From: Jonathan Bobel Date: Mon, 10 Jun 2024 10:23:35 -0400 Subject: [PATCH] This was a testing experiment, no longer needed --- __mocks__/charts.js | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 __mocks__/charts.js 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, -};