@ssense/cucumber-testrail-sync
Advanced tools
Comparing version 3.0.1 to 3.0.2
@@ -98,3 +98,8 @@ "use strict"; | ||
return index >= tableStart && index < tableEnd; | ||
}).map((line) => line.replace(/^(\|{2,})(.*)$/, '|$2|')))); | ||
}).map((line, index) => { | ||
if (index === 0) { | ||
return line.replace(/^(\|{2,})(.*)$/, '|$2|'); | ||
} | ||
return line.replace(/^(\|{2})(.*)$/, '|$2|'); | ||
}))); | ||
} | ||
@@ -101,0 +106,0 @@ tableStart = -1; |
{ | ||
"name": "@ssense/cucumber-testrail-sync", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"description": "Synchronize test cases from TestRail & pushes Cucumber results", | ||
@@ -5,0 +5,0 @@ "bin": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
415178
1435