core-hn_pseudobsidian-ization/jest.config.js
Axelle Abbadie d216e81fb2 init
2026-05-12 01:55:27 +02:00

18 lines
373 B
JavaScript

/** @type {import('jest').Config} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>/tests'],
testMatch: ['**/*.test.ts'],
moduleNameMapper: {
'^obsidian$': '<rootDir>/tests/__mocks__/obsidian.ts',
},
globals: {
'ts-jest': {
tsconfig: {
module: 'commonjs',
strict: true,
},
},
},
};