From 559514bfef0657d786ba13771614e1c8936406ce Mon Sep 17 00:00:00 2001 From: Florian BOUILLON Date: Thu, 20 Jul 2023 17:56:24 +0200 Subject: [PATCH] fix: build issue Signed-off-by: Florian BOUILLON --- vitest.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vitest.config.ts b/vitest.config.ts index b4b3250..ca11782 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -5,7 +5,7 @@ import { getViteConfig } from 'astro/config' export default getViteConfig({ test: { include: [ - './tests/**' + './tests/**.ts' ] /* for example, use global to avoid globals imports (describe, test, expect): */ // globals: true,