mirror of
https://github.com/ksawl/obsidian-alchemist.git
synced 2026-07-22 06:49:47 +00:00
10 lines
283 B
JavaScript
10 lines
283 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/__tests__/**/*.test.ts'],
|
|
moduleNameMapper: {
|
|
'^obsidian$': '<rootDir>/../../node_modules/obsidian/obsidian.d.ts'
|
|
},
|
|
verbose: true
|
|
};
|