artes 1.0.86 → 1.0.87

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "artes",
3
- "version": "1.0.86",
3
+ "version": "1.0.87",
4
4
  "description": "The simplest way to automate UI and API tests using Cucumber-style steps.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -139,7 +139,7 @@ AfterAll(async function () {
139
139
 
140
140
  const successPercentage = (passedCount / totalTests) * 100;
141
141
  const successRate =
142
- successPercentage.toFixed(2) > cucumberConfig.default.testPercentage;
142
+ successPercentage.toFixed(2) >= cucumberConfig.default.testPercentage;
143
143
 
144
144
  if (!isNaN(successPercentage)) {
145
145
  if (successRate) {