stoplightio/yaml

View on GitHub
vitest.config.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { defineConfig } from 'vitest/config';

export default defineConfig({
  test: {
    coverage: {
      reporter: ['lcovonly', 'text', 'json', 'html'],
    },
  },
});