Comparing version 0.720.2 to 0.720.6
@@ -175,3 +175,8 @@ const co = require('co') | ||
} | ||
yield runTestWhileConditionMet(() => !(tester.getCurrentStepNumber() === String(args.stepNumber))) | ||
const matchCondition = () => { | ||
const currentStep = tester.getCurrentStepNumber() | ||
const targetStep = String(args.stepNumber) | ||
return `${currentStep}.`.startsWith(`${targetStep}.`) | ||
} | ||
yield runTestWhileConditionMet(() => !matchCondition()) | ||
}), callback) | ||
@@ -178,0 +183,0 @@ }) |
{ | ||
"name": "prescript", | ||
"version": "0.720.2", | ||
"version": "0.720.6", | ||
"description": "Object-oriented acceptance test tool", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
138216
1049