generated from nhcarrigan/template
Naomi Carrigan
7c0bd7ad10
Reviewed-on: https://codeberg.org/nhcarrigan/tingle-bot/pulls/1 Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com> Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
16 lines
272 B
TypeScript
16 lines
272 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: {
|
|
provider: "istanbul",
|
|
reporter: ["text", "html"],
|
|
all: true,
|
|
allowExternal: true,
|
|
thresholds: {
|
|
lines: 0,
|
|
},
|
|
},
|
|
},
|
|
});
|