From 4ab612b6a546184d30d656cc6fde9ff772fec2a7 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Thu, 22 Feb 2024 00:37:38 +0100 Subject: [PATCH] test: add `hanging-process` reporter --- vitest.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/vitest.config.ts b/vitest.config.ts index 502ab0f..47e239a 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -2,6 +2,7 @@ import { defineConfig } from "vitest/config"; export default defineConfig({ test: { + reporters: ["hanging-process"], // globalSetup: "./test/_setup.ts", }, });