mirror of
https://github.com/core-hn/pseudobsidian-ization.git
synced 2026-07-22 06:57:06 +00:00
18 lines
373 B
JavaScript
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,
|
|
},
|
|
},
|
|
},
|
|
};
|