@factorialco/shadowdog
Version:
<img src="https://raw.githubusercontent.com/factorialco/shadowdog/refs/heads/main/logo.png" alt="drawing" width="100"/>
12 lines (11 loc) • 476 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const config_1 = require("vitest/config");
exports.default = (0, config_1.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'],
},
});