diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2022-02-07 21:13:03 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2022-02-07 21:35:06 +0200 |
| commit | 1251d35b94d64b7f34d5dd16eab8e7493b0c966c (patch) | |
| tree | 89bb5f62161e7e9f58d30feedc53e497fdc994e4 /vite.config.ts | |
| parent | 2fc99118ba7eb27fc21921f28a4fa5c28fff2552 (diff) | |
Add tests, do things
Diffstat (limited to 'vite.config.ts')
| -rw-r--r-- | vite.config.ts | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/vite.config.ts b/vite.config.ts index b1b5f91..80e21bc 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,7 +1,11 @@ -import { defineConfig } from 'vite' -import react from '@vitejs/plugin-react' +import { defineConfig } from "vite" +import react from "@vitejs/plugin-react" // https://vitejs.dev/config/ export default defineConfig({ - plugins: [react()] -}) + plugins: [react()], + test: { + testTimeout: 30_000, + hookTimeout: 30_000, + }, +} as any)
\ No newline at end of file |
