Limit test names to 64 chars to avoid hitting windows MAX_PATH limit

also in the change this.child is reset to null in case of error.
This commit is contained in:
Michael Krasnyk
2017-01-24 13:33:43 +01:00
committed by Patrick Niklaus
parent 7deff5837c
commit e463733138
2 changed files with 8 additions and 4 deletions
+3 -1
View File
@@ -141,7 +141,9 @@ module.exports = function() {
// converts the scenario titles in file prefixes
this.getScenarioID = (scenario) => {
let name = scenario.getName().toLowerCase().replace(/[\/\-'=,\(\):\*#]/g, '').replace(/\s/g, '_').replace(/__/g, '_').replace(/\.\./g, '.');
let name = scenario.getName().toLowerCase().replace(/[\/\-'=,\(\):\*#]/g, '')
.replace(/\s/g, '_').replace(/__/g, '_').replace(/\.\./g, '.')
.substring(0, 64);
return util.format('%d_%s', scenario.getLine(), name);
};