5bcf23ee4e
Install @testing-library/jest-dom, add tests/**/*.test.tsx to vitest include and tsconfig include patterns.
29 lines
729 B
TypeScript
29 lines
729 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import path from "node:path";
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
"@phase0": path.resolve(__dirname, "./scripts/phase-0"),
|
|
},
|
|
},
|
|
test: {
|
|
environment: "node",
|
|
globals: true,
|
|
passWithNoTests: true,
|
|
include: ["src/**/*.test.ts", "src/**/*.test.tsx", "tests/**/*.test.ts", "tests/**/*.test.tsx"],
|
|
coverage: {
|
|
provider: "v8",
|
|
reporter: ["text", "json-summary", "lcov"],
|
|
include: ["src/**/*.ts", "src/**/*.tsx"],
|
|
exclude: [
|
|
"src/**/*.test.ts",
|
|
"src/**/*.test.tsx",
|
|
"src/**/types.ts",
|
|
"src/host-contract.ts",
|
|
],
|
|
},
|
|
},
|
|
});
|