vitest.config.ts 313 B

12345678910111213
  1. import { defineConfig } from "vitest/config"
  2. // kilocode_change start
  3. const isCI = process.env.CI === "true" || process.env.CI === "1" || Boolean(process.env.CI)
  4. export default defineConfig({
  5. test: {
  6. globals: true,
  7. watch: false,
  8. reporters: isCI ? ["verbose"] : ["default"],
  9. },
  10. })
  11. // kilocode_change end