botbook/node_modules/@azure/static-web-apps-cli/vitest.config.unit.ts
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

15 lines
269 B
TypeScript

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