add feature to disable test case
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-01-09 15:29:13 +11:00
parent b2519287ef
commit a31b01af4d
6 changed files with 204 additions and 15 deletions

View File

@@ -11,6 +11,7 @@ type TestDefinitions struct {
type TestCase struct {
Name string
Disabled bool `json:"disabled"`
Path string `json:"path"`
Method string `json:"method"`
Description string `json:"description"`