vitest.config.ts 352 Bytes
Newer Older
John Doe's avatar
John Doe committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/// <reference types="vitest" />

import { defineConfig } from 'vitest/config';

export default defineConfig({
  root: '.',
  test: {
    testTimeout: 600000000,
    clearMocks: true,
    globals: true,
    setupFiles: ['dotenv/config'],
    watchExclude: ['node_modules', 'artifacts', 'cache'],
    forceRerunTriggers: ['circuits/**/*.sol'],
  },
});