land0r_obsidian-flowchart-p.../jest.config.js

11 lines
304 B
JavaScript

module.exports = {
preset: 'ts-jest',
testEnvironment: 'jest-environment-jsdom',
testMatch: ['**/*.test.ts'], // Match all .test.ts files
moduleNameMapper: {
'^obsidian$': '<rootDir>/__mocks__/obsidian.js', // Map the `obsidian` module to our mock
},
fakeTimers: {
enableGlobally: true,
},
};