From e87235cc4430f9c208a11fc5e7e1b75d83b75550 Mon Sep 17 00:00:00 2001 From: Thomas Mills Date: Mon, 18 Nov 2024 18:05:40 +0100 Subject: [PATCH] cleanup test dir --- test/{__mocks__ => }/setup.ts | 0 vitest.config.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename test/{__mocks__ => }/setup.ts (100%) diff --git a/test/__mocks__/setup.ts b/test/setup.ts similarity index 100% rename from test/__mocks__/setup.ts rename to test/setup.ts diff --git a/vitest.config.ts b/vitest.config.ts index 9433122..1c672ff 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -74,6 +74,6 @@ export default defineConfig({ test: { globals: true, environment: 'happy-dom', - setupFiles: './test/__mocks__/setup.ts', + setupFiles: './test/setup.ts', }, });