mirror of
https://github.com/threeal/cmake-action.git
synced 2025-06-08 10:11:21 +00:00
13 lines
217 B
TypeScript
13 lines
217 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: {
|
|
all: false,
|
|
enabled: true,
|
|
reporter: ["text"],
|
|
thresholds: { 100: true },
|
|
},
|
|
},
|
|
});
|