botbook/node_modules/@azure/static-web-apps-cli/vitest.config.unit.ts

16 lines
269 B
TypeScript
Raw Normal View History

2024-09-04 13:13:15 -03:00
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
include: ["src/**/*.spec.ts"],
mockReset: true,
restoreMocks: true,
server: {
deps: {
inline: ["to-vfile"],
},
},
},
});