mirror of
https://github.com/land0r/obsidian-flowchart-plugin.git
synced 2026-07-22 05:32:04 +00:00
11 lines
304 B
JavaScript
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,
|
|
},
|
|
};
|