mirror of
https://github.com/threeal/cmake-action.git
synced 2025-07-27 00:04:22 +00:00
14 lines
235 B
TypeScript
14 lines
235 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
watch: false,
|
|
coverage: {
|
|
all: false,
|
|
enabled: true,
|
|
reporter: ["text"],
|
|
thresholds: { 100: true },
|
|
},
|
|
},
|
|
});
|