diff --git a/packages/server/test/support/helpers/e2e.ts b/packages/server/test/support/helpers/e2e.ts index 1f4dfbe25c..34326d9fb2 100644 --- a/packages/server/test/support/helpers/e2e.ts +++ b/packages/server/test/support/helpers/e2e.ts @@ -151,7 +151,7 @@ const normalizeStdout = function (str, options: any = {}) { .replace(/(\s+?)(\d+ms|\d+:\d+:?\d+)/g, replaceDurationInTables) .replace(/(coffee|js)-\d{3}/g, '$1-456') // Cypress: 2.1.0 -> Cypress: 1.2.3 - .replace(/(Cypress\:\s+)(\d\.\d\.\d)/g, '$11.2.3') + .replace(/(Cypress\:\s+)(\d+\.\d+\.\d+)/g, '$11.2.3') // Node Version: 10.2.3 (Users/jane/node) -> Node Version: X (foo/bar/node) .replace(/(Node Version\:\s+v)(\d+\.\d+\.\d+)( \(.*\)\s+)/g, replaceNodeVersion) // 15 seconds -> X second diff --git a/scripts/binary/zip.js b/scripts/binary/zip.js index f763f0fce7..47ab697961 100644 --- a/scripts/binary/zip.js +++ b/scripts/binary/zip.js @@ -73,7 +73,7 @@ const checkZipSize = function (zipPath) { const zipSize = filesize(stats.size, { round: 0 }) console.log(`zip file size ${zipSize}`) - const MAX_ALLOWED_SIZE_MB = os.platform() === 'win32' ? 245 : 190 + const MAX_ALLOWED_SIZE_MB = os.platform() === 'win32' ? 245 : 200 const MAX_ZIP_FILE_SIZE = megaBytes(MAX_ALLOWED_SIZE_MB) if (stats.size > MAX_ZIP_FILE_SIZE) {