I have a project with both evalite.config.ts and vitest.config.ts. I expect evalite to only read evalite.config.ts, but that is not the case.
My vitest.config.ts looks like this, which is incompatible with evalite:
import { defineWorkersConfig } from "@cloudflare/vitest-pool-workers/config";
export default defineWorkersConfig({
test: {
poolOptions: {
workers: {
wrangler: {
configPath: "./wrangler.test.jsonc",
},
},
},
},
});
My evalite.config.ts file:
import { defineConfig } from "evalite/config";
export default defineConfig({});
evalite: 0.18.0