mirror of
https://github.com/threeal/cmake-action.git
synced 2025-07-04 14:11:21 +00:00
* test: remove `.*` files from being ignored by ESLint Signed-off-by: Alfi Maulana <alfi.maulana.f@gmail.com> * test: use `vitest run` to test library Signed-off-by: Alfi Maulana <alfi.maulana.f@gmail.com> --------- Signed-off-by: Alfi Maulana <alfi.maulana.f@gmail.com>
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 },
|
|
},
|
|
},
|
|
});
|