Mirror: The spec-compliant minimum of client-side GraphQL.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 0ce16030f5c5b2b066439c8c7b4091c6e3a9c8a6 13 lines 221 B view raw
1import { defineConfig } from 'vitest/config'; 2 3export default defineConfig({ 4 test: { 5 coverage: { 6 enabled: true, 7 provider: 'c8', 8 100: true, 9 }, 10 globals: false, 11 clearMocks: true, 12 }, 13});