Skip to content

Commit

Permalink
Merge branch 'develop' into feat/preferences-controller-to-base-contr…
Browse files Browse the repository at this point in the history
…oller-v2
  • Loading branch information
kanthesha authored Oct 14, 2024
2 parents 37b1d31 + ca14e7b commit 0eb3dc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/scripts/test-run-e2e-timeout-minutes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { filterE2eChangedFiles } from '../../test/e2e/changedFilesUtil';

const changedOrNewTests = filterE2eChangedFiles();

//15 minutes, plus 3 minutes for every changed file, up to a maximum of 30 minutes
const extraTime = Math.min(15 + changedOrNewTests.length * 3, 30);
// 20 minutes, plus 3 minutes for every changed file, up to a maximum of 30 minutes
const extraTime = Math.min(20 + changedOrNewTests.length * 3, 30);

console.log(extraTime);

0 comments on commit 0eb3dc5

Please sign in to comment.