diff --git a/shared/vitest.config.ts b/shared/vitest.config.ts index 15faa267e..b43aee369 100644 --- a/shared/vitest.config.ts +++ b/shared/vitest.config.ts @@ -1,4 +1,5 @@ import tsconfigPaths from 'vite-tsconfig-paths' +import type { UserConfig } from 'vitest/config' export default { test: { @@ -7,9 +8,10 @@ export default { 'tests/**/test.?(c|m)[jt]s?(x)' ] }, + testTimeout: 15000, plugins: [ tsconfigPaths({ ignoreConfigErrors: true }) ] -} \ No newline at end of file +} as UserConfig \ No newline at end of file