From d02db1b46795acd3f577618f33e71691e9de5b26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Exbrayat?= Date: Wed, 9 Feb 2022 17:52:34 +0100 Subject: [PATCH] fix: default reporters should be an array (#720) --- packages/vitest/src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vitest/src/constants.ts b/packages/vitest/src/constants.ts index d9c6c3d78cbe..913a436ac0b4 100644 --- a/packages/vitest/src/constants.ts +++ b/packages/vitest/src/constants.ts @@ -50,7 +50,7 @@ export const configDefaults: UserConfig = Object.freeze({ watchIgnore: [/\/node_modules\//, /\/dist\//], update: false, watch: !process.env.CI, - reporters: 'default', + reporters: ['default'], silent: false, api: false, ui: false,