sandbox-web-ide/backend/ai/vitest.config.ts

12 lines
222 B
TypeScript
Raw Permalink Normal View History

2024-10-24 12:44:38 -06:00
import { defineWorkersConfig } from "@cloudflare/vitest-pool-workers/config"
2024-05-13 23:00:02 -07:00
export default defineWorkersConfig({
2024-10-24 12:44:38 -06:00
test: {
poolOptions: {
workers: {
wrangler: { configPath: "./wrangler.toml" },
},
},
},
})