Files
shockbot/vitest.config.ts
T
Colin McDonnell 7621d6f0e5 tests and better diffs (#163)
* refactor get_review_comments to use reviewThreads graphql api with full thread context and proper diff extraction

* Improve get_review_comments output

* Improve tests and diffs

* GH_TOKEN

* Added back approved_by

* Fix CI
2026-01-23 06:28:22 +00:00

11 lines
252 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environment: "node",
exclude: ["**/node_modules/**", "**/.temp/**", "**/.pnpm-store/**"],
setupFiles: ["./vitest.setup.ts"],
},
});