Skip to content

Commit

Permalink
Make e2e test flakes more lenient in CI (#38468)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrozenberg committed Oct 4, 2022
1 parent b0c5acc commit 9e521e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-system/tasks/e2e/index.js
Expand Up @@ -26,8 +26,8 @@ const {log} = require('../../common/logging');
const {maybePrintCoverageMessage} = require('../helpers');
const {watch} = require('chokidar');

const SLOW_TEST_THRESHOLD_MS = 2500;
const TEST_RETRIES = isCiBuild() ? 2 : 0;
const SLOW_TEST_THRESHOLD_MS = isCiBuild() ? 5000 : 2500;
const TEST_RETRIES = isCiBuild() ? 3 : 0;

const COV_DOWNLOAD_PATH = '/coverage/download';
const COV_OUTPUT_DIR = './test/coverage-e2e';
Expand Down

0 comments on commit 9e521e7

Please sign in to comment.