Skip to content

Commit 3f2b2c2

Browse files
committed
increase vitest hook timeout
1 parent 7cb6292 commit 3f2b2c2

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.eslintrc.cjs
22
build.config.js
3-
jest.config.cjs
3+
vitest.config.ts
44
dist
55
examples

vitest.config.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { defineConfig } from 'vitest/config';
2+
3+
export default defineConfig({
4+
test: {
5+
exclude: [],
6+
hookTimeout: 15000,
7+
},
8+
})

0 commit comments

Comments
 (0)