refactor: relocate build plugin

This commit is contained in:
debugtalk
2022-05-29 12:32:39 +08:00
parent f4ea0e8e06
commit 57d3b90989
18 changed files with 95 additions and 214 deletions
+2 -2
View File
@@ -25,10 +25,10 @@ func TestBoomerStandaloneRun(t *testing.T) {
NewStep("TestCase3").CallRefCase(&TestCase{Config: NewConfig("TestCase3")}),
},
}
testcase2 := &demoTestCaseWithPluginJSONPath
testcase2 := TestCasePath(demoTestCaseWithPluginJSONPath)
b := NewBoomer(2, 1)
go b.Run(testcase1, testcase2)
go b.Run(testcase1, &testcase2)
time.Sleep(5 * time.Second)
b.Quit()
}