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 85de461d2dfd72d7887f9ad464020dae806f87b3 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});