Files
kestrelos/vitest.integration.config.js
Madison Grubb b0e8dd7ad9
Some checks failed
ci/woodpecker/pr/pr Pipeline failed
make kestrel a tak server, so that it can send and receive pois as cots data
2026-02-17 10:42:53 -05:00

16 lines
362 B
JavaScript

import { defineConfig } from 'vitest/config'
/**
* Run only integration tests (start real server, assert ports).
* Usage: npm run test:integration
*/
export default defineConfig({
test: {
include: ['test/integration/**/*.spec.js'],
exclude: ['**/node_modules/**'],
environment: 'node',
testTimeout: 120000,
hookTimeout: 100000,
},
})