mirror of
https://github.com/gustjose/obsidian-syncthing-manager.git
synced 2026-07-22 06:40:35 +00:00
12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import * as path from "path";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["tests/**/*.test.ts"],
|
|
setupFiles: ["tests/setup.ts"],
|
|
alias: {
|
|
obsidian: path.resolve(__dirname, "tests/__mocks__/obsidian.ts"),
|
|
},
|
|
},
|
|
});
|