This was a testing experiment, no longer needed

This commit is contained in:
Jonathan Bobel
2024-06-10 10:23:35 -04:00
parent 9d22b99e9b
commit abcbb0eb7a

View File

@@ -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,
};