mirror of
https://github.com/alamion/obsidian-jira-sync.git
synced 2026-07-22 05:43:04 +00:00
- presets for JQL - rename all cached issues - rebuild cache command - bunch of vitests fixes: - incorrect migration save/load settings - incorrect cache validation before obsidian init
15 lines
327 B
TypeScript
15 lines
327 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import path from 'path';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['tests/__tests__/**/*.test.ts'],
|
|
environment: 'jsdom',
|
|
setupFiles: ['tests/__tests__/setup.ts'],
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
obsidian: path.resolve(__dirname, '__mocks__/obsidian.ts'),
|
|
},
|
|
},
|
|
});
|