1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-06 12:19:08 +01:00

chore(test): add hanging-process reporter on CI (#2622)

This commit is contained in:
Joaquín Sánchez 2024-02-25 15:13:27 +01:00 committed by GitHub
parent edcc8741bf
commit 6f20ce5bba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,10 +1,12 @@
import { defineVitestConfig } from '@nuxt/test-utils/config'
import { isCI } from 'std-env'
export default defineVitestConfig({
define: {
'process.test': 'true',
},
test: {
reporters: isCI ? ['default', 'hanging-process'] : ['default'],
setupFiles: [
'/tests/setup.ts',
],