UNPKG

@factorialco/shadowdog

Version:

<img src="https://raw.githubusercontent.com/factorialco/shadowdog/refs/heads/main/logo.png" alt="drawing" width="100"/>

11 lines (9 loc) 364 B
import { defineConfig } from 'vitest/config' export default defineConfig({ test: { // Exclude E2E and integration tests from unit test runs exclude: ['**/node_modules/**', '**/dist/**', '**/test/e2e/**', '**/test/integration/**'], // Include unit test files co-located with source code include: ['src/**/*.test.ts', 'src/**/*.test.js'], }, })