Back to Strapi

vitest-config

packages/utils/vitest-config/README.md

5.45.0447 B
Original Source

vitest-config

Shared Vitest configuration for the Strapi monorepo.

[!IMPORTANT] This is a private package and is not intended to be used outside of the Strapi monorepo.

Usage

Unit Tests

typescript
import { defineConfig, mergeConfig } from 'vitest/config';
import { unitPreset } from 'vitest-config/presets/unit';

export default mergeConfig(
  unitPreset,
  defineConfig({
    test: {
      root: __dirname,
    },
  })
);