Skip to content

Commit 2c2e224

Browse files
committed
Increase test timeout to avoid false negative
1 parent c359b60 commit 2c2e224

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@ jobs:
3131
with:
3232
node-version: 16
3333
- run: npm ci
34-
- run: npm test
34+
- name: Run tests (Linux)
35+
if: ${{ runner.os == 'Linux' }}
36+
run: npm test
37+
- name: Run tests (Windows or macOS)
38+
if: ${{ runner.os == 'Windows' || runner.os == 'macOS' }}
39+
run: npm test -- --timeout 5000
3540

3641
validate_declarations:
3742
strategy:

0 commit comments

Comments
 (0)