From 73026631651ef0d3a2b088601f5f64496faa968c Mon Sep 17 00:00:00 2001 From: Raphael Gruber Date: Mon, 18 Nov 2024 22:42:07 +0100 Subject: [PATCH] add missing testsuite description field --- handoff.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/handoff.go b/handoff.go index a4112f9..9c53621 100644 --- a/handoff.go +++ b/handoff.go @@ -108,6 +108,7 @@ type TestSuite struct { // Namespace allows grouping of test suites, e.g. by team name. Namespace string MaxTestAttempts int + Description string Setup func() error Teardown func() error Timeout time.Duration @@ -643,6 +644,7 @@ func (h *Server) mapTestSuites() error { Namespace: ts.Namespace, MaxTestAttempts: ts.MaxTestAttempts, Setup: ts.Setup, + Description: ts.Description, Teardown: ts.Teardown, Tests: make(map[string]model.TestFunc), }