Skip to content

Commit

Permalink
💚(jest) Stabilize CI with higher timeout for test-bundle tests (#4452)
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz authored Nov 19, 2023
1 parent ddef965 commit 170a880
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .yarn/versions/43c7daff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declined:
- "@fast-check/jest"
5 changes: 4 additions & 1 deletion packages/jest/test-bundle/jest.config.cjs
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
module.exports = { testMatch: ['<rootDir>/*.spec.cjs'] };
module.exports = {
testMatch: ['<rootDir>/*.spec.cjs'],
testTimeout: 20_000,
};
5 changes: 4 additions & 1 deletion packages/jest/test-bundle/jest.config.mjs
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
export default { testMatch: ['<rootDir>/*.spec.mjs'] };
export default {
testMatch: ['<rootDir>/*.spec.mjs'],
testTimeout: 20_000,
};

0 comments on commit 170a880

Please sign in to comment.