cypress-parallel
Version:
Reduce up to 40% your Cypress suite execution time parallelizing the test run on the same machine.
53 lines (44 loc) • 1.31 kB
JavaScript
const fs = require('fs');
const path = require('path');
const { settings } = require('./settings');
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
const formatTime = function (timeMs) {
const seconds = Math.ceil(timeMs / 1000);
const sec = seconds % 60;
const min = Math.floor(seconds / 60);
let res = '';
if (min) res += `${min}m `;
res += `${sec}s`;
return res;
};
function generateWeightsFile(specWeights, totalDuration, totalWeight) {
Object.keys(specWeights).forEach((spec) => {
specWeights[spec].weight = Math.floor(
(specWeights[spec].time / totalDuration) * totalWeight
);
});
const weightsJson = JSON.stringify(specWeights);
try {
fs.writeFileSync(`${settings.weightsJSON}`, weightsJson, 'utf8');
console.log('Weights file generated.')
} catch(e) {
console.error(e)
}
}
function collectResults(resultsPath) {
const resultFiles = fs.readdirSync(resultsPath);
const results = new Map();
resultFiles.forEach((fileName) => {
const filePath = path.join(resultsPath, fileName);
const content = fs.readFileSync(filePath);
const result = JSON.parse(content);
results.set(result.file, result);
});
return results;
}
module.exports = {
collectResults,
sleep,
formatTime,
generateWeightsFile
};