From 94c61744c0b49f6c1e820723f8104c23ec530859 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Wed, 18 Jun 2025 21:36:26 +0200 Subject: [PATCH] Fix: exclude android repo from tests, increase timeout --- vitest.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vitest.config.ts b/vitest.config.ts index 32d1cccea..da62fdaaa 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -7,7 +7,9 @@ export default defineConfig({ globals: true, maxThreads: 16, minThreads: 1, + testTimeout: 15000, setupFiles: ["./test/testhooks.ts"], + exclude: ["android/*"], include: ["./test/*.spec.ts", "./test/**/*.spec.ts", "./*.doctest.ts", "./**/*.doctest.ts"], }, })