mirror of
https://github.com/openai/codex.git
synced 2026-05-01 18:06:47 +00:00
12 lines
194 B
TypeScript
12 lines
194 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
coverage: {
|
|
provider: "v8",
|
|
reporter: ["text", "lcov"],
|
|
},
|
|
},
|
|
});
|