Spaces:
Running
Running
File size: 350 Bytes
9e61dbf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import { defineConfig } from "vitest/config";
import baseConfig from "./vitest.config.ts";
const baseTest = (baseConfig as { test?: { exclude?: string[] } }).test ?? {};
const exclude = baseTest.exclude ?? [];
export default defineConfig({
...baseConfig,
test: {
...baseTest,
include: ["extensions/**/*.test.ts"],
exclude,
},
});
|