mirror of
https://github.com/echore/vault-autopilot.git
synced 2026-07-22 08:34:00 +00:00
9 lines
247 B
JavaScript
9 lines
247 B
JavaScript
/** @type {import('jest').Config} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
moduleNameMapper: {
|
|
'^obsidian$': '<rootDir>/tests/__mocks__/obsidian.ts',
|
|
'\\.md$': '<rootDir>/tests/__mocks__/md-stub.ts',
|
|
},
|
|
};
|