test: only include src for coverage report (#525)

Signed-off-by: ysknsid25 <kengo071225@gmail.com>
This commit is contained in:
Kanon 2025-07-24 02:03:56 +09:00 committed by GitHub
parent 66b9604da2
commit 96b82f09b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,8 @@ import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
coverage: {
reporter: ["text", "clover", "json"]
}
}
reporter: ["text", "clover", "json"],
include: ["src/**/*.ts"],
},
},
});