Roo-Code/vitest.config.ts
Chris Estreich 11ed7d7d46
Add support for tests that use ESM libraries (#3172)
* Add support for tests that use ESM libraries

* Disable win32 for this test for now
2025-05-05 08:21:40 -07:00

7 lines
134 B
TypeScript

import { defineConfig } from "vitest/config"
export default defineConfig({
test: {
include: ["**/__tests__/**/*.spec.ts"],
},
})