Documentation
    Preparing search index...
    reporters: Exclude<ViteUserConfig["test"], undefined>["reporters"] = ...

    A pre-configured list of Vitest reporters to use in your vitest.config.ts.

    Includes "default" and "html" reporters by default. When running inside a GitHub Actions environment (GITHUB_ACTIONS env var is set), the "github-actions" reporter is automatically appended for richer CI output.

    import { defineProject, mergeConfig } from 'vitest/config';
    import { reporters } from '@map-colonies/vitest-utils';

    export default mergeConfig(
    sharedConfig,
    defineProject({ test: { reporters } })
    );