updates/vitest.config.js
2022-11-24 17:13:25 +01:00

17 lines
365 B
JavaScript

import {defineConfig} from "vitest/dist/config.js";
export default defineConfig({
test: {
include: ["**/test.js", "**/*.test.js"],
environment: "node",
testTimeout: 20000,
open: false,
allowOnly: true,
passWithNoTests: true,
globals: true,
watch: false,
outputDiffLines: Infinity,
outputTruncateLength: Infinity,
},
});