Skip to content

Commit

Permalink
Customize Iot Data Plane Smoke Tests (#4341)
Browse files Browse the repository at this point in the history
  • Loading branch information
skmcgrail committed Mar 30, 2022
1 parent e9b6502 commit ceb8a6c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions private/model/api/smoke.go
Expand Up @@ -27,9 +27,15 @@ type SmokeTestCase struct {
}

var smokeTestsCustomizations = map[string]func(*SmokeTestSuite) error{
"sts": stsSmokeTestCustomization,
"waf": wafSmokeTestCustomization,
"wafregional": wafRegionalSmokeTestCustomization,
"sts": stsSmokeTestCustomization,
"waf": wafSmokeTestCustomization,
"wafregional": wafRegionalSmokeTestCustomization,
"iotdataplane": iotDataPlaneSmokeTestCustomization,
}

func iotDataPlaneSmokeTestCustomization(suite *SmokeTestSuite) error {
suite.TestCases = []SmokeTestCase{}
return nil
}

func wafSmokeTestCustomization(suite *SmokeTestSuite) error {
Expand Down

0 comments on commit ceb8a6c

Please sign in to comment.