From 6f8edfe570cabdb56044b31e304f7f6330761701 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=89=8B=E7=93=9C=E4=B8=80=E5=8D=81=E9=9B=AA?= Date: Sat, 15 Nov 2025 16:42:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=85=E7=90=86=E9=87=8D=E5=A4=8D=E7=9A=84?= =?UTF-8?q?=20Vitest=20configuration=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Deleted vitest.config.ts, which contained test environment and path alias settings. This may indicate a change in testing strategy or migration away from Vitest. --- vitest.config.ts | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 vitest.config.ts diff --git a/vitest.config.ts b/vitest.config.ts deleted file mode 100644 index cd3d1592..00000000 --- a/vitest.config.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { defineConfig } from 'vitest/config'; -import { resolve } from 'path'; - -export default defineConfig({ - test: { - environment: 'node', - globals: true, - include: ['packages/napcat-test/**/*.test.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'], - }, - resolve: { - alias: { - '@': resolve(__dirname, 'packages'), - }, - }, -});