feat: log rendezvous when running tests

This commit is contained in:
debugtalk
2021-12-08 11:29:57 +08:00
parent 01cd071bb9
commit 9689201d29
4 changed files with 44 additions and 4 deletions
+4
View File
@@ -120,6 +120,10 @@ func (tc *TCase) ToTestCase() (*TestCase, error) {
testCase.TestSteps = append(testCase.TestSteps, &stepTransaction{
step: step,
})
} else if step.Rendezvous != nil {
testCase.TestSteps = append(testCase.TestSteps, &stepRendezvous{
step: step,
})
} else {
log.Warn().Interface("step", step).Msg("[convertTestCase] unexpected step")
}