We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8be640 commit e56bd44Copy full SHA for e56bd44
.github/workflows/ci.yml
@@ -62,9 +62,7 @@ jobs:
62
strategy:
63
matrix:
64
node: [16.x, 18.x]
65
- # Disable Windows because it is quite slow (test timeout)
66
- # os: [ubuntu-latest, windows-latest, macos-latest]
67
- os: [ubuntu-latest, macos-latest]
+ os: [ubuntu-latest, windows-latest, macos-latest]
68
fail-fast: false
69
70
steps:
test/vitest.config.ts
@@ -3,6 +3,7 @@ import { defineConfig } from "vite";
3
4
export default defineConfig({
5
test: {
6
- testTimeout: 100000,
+ // Big enough?!
7
+ testTimeout: 1000000,
8
},
9
});
0 commit comments