Files

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

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

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