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

pull/2625/head
Joaquín Sánchez 2024-02-25 15:13:27 +01:00 zatwierdzone przez GitHub
rodzic edcc8741bf
commit 6f20ce5bba
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -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',
],