Skip to content

Commit

Permalink
build(CircleCI): increase timeout for Windows test
Browse files Browse the repository at this point in the history
The `npm run test-jest-windows` step in our CI is flaky because the jest
command may take more than 10 minutes without outputting anything.

This commit increases the no-output-timeout to 20m to get rid of that
flakiness.
  • Loading branch information
tommyknows committed Aug 31, 2022
1 parent 74793b0 commit 9ddd898
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ jobs:
name: Use snyk-main npmjs user
command: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> .npmrc
- run: npm install
- run: npm run test-jest-windows
- run:
command: npm run test-jest-windows
no_output_timeout: 20m
build:
<<: *defaults
steps:
Expand Down

0 comments on commit 9ddd898

Please sign in to comment.