Stirling-PDF/frontend/vitest.minimal.config.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
189 B
TypeScript
Raw Permalink Normal View History

2025-07-30 20:03:11 +01:00
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
environment: 'node',
testTimeout: 5000,
include: ['src/utils/convertUtils.test.ts']
},
})