feat: runStepRequest

This commit is contained in:
debugtalk
2021-09-24 11:24:13 +08:00
parent e1f723e47e
commit a2ca1cd0dd
3 changed files with 26 additions and 21 deletions

View File

@@ -37,8 +37,7 @@ func convertBoomerTask(testcase *TestCase) *boomer.Task {
config := &testcase.Config
for _, step := range testcase.TestSteps {
start := time.Now()
tStep := parseStep(step, config)
err := runner.runStep(tStep)
err := runner.runStep(step, config)
elapsed := time.Since(start).Nanoseconds() / int64(time.Millisecond)
if err == nil {