Skip to content

Commit

Permalink
chore(ci): increase timeouts to reduce flakiness (snyk#5175)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterSchafer authored Apr 18, 2024
1 parent 34bbc95 commit 216af9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const { createJestConfig } = require('./test/createJestConfig');

module.exports = createJestConfig({
testTimeout: 10000,
displayName: 'coreCli',
projects: ['<rootDir>', '<rootDir>/packages/*'],
globalSetup: './test/setup.js',
Expand Down
2 changes: 1 addition & 1 deletion test/jest/acceptance/extra-certs.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as fs from 'fs';
import { runCommand } from '../util/runCommand';
import { fakeServer } from '../../../test/acceptance/fake-server';

jest.setTimeout(1000 * 60 * 1);
jest.setTimeout(1000 * 60 * 2);
describe('Extra CA certificates specified with `NODE_EXTRA_CA_CERTS`', () => {
it('using a not existing file', async () => {
const { code } = await runSnykCLI(`woof --debug`, {
Expand Down

0 comments on commit 216af9c

Please sign in to comment.