Skip to content

Ability to specify which config files are read (--config) #296

@jonasb

Description

@jonasb

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions