carbon-tokenization / backend /vitest.config.ts
tfrere's picture
tfrere HF Staff
test: add vitest test suite for publisher, auth, security, utils
755a930
Raw
History Blame Contribute Delete
177 Bytes
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["tests/**/*.test.ts"],
globals: true,
testTimeout: 10_000,
},
});