diff --git a/v2/cmd/integration-test/interactsh.go b/v2/cmd/integration-test/interactsh.go index 184e9afa50..0ef9f6636a 100644 --- a/v2/cmd/integration-test/interactsh.go +++ b/v2/cmd/integration-test/interactsh.go @@ -2,7 +2,7 @@ package main // All Interactsh related testcases var interactshTestCases = []TestCaseInfo{ - {DisableOn: []string{"windows"}, Path: "http/interactsh.yaml", TestCase: &httpInteractshRequest{}}, - {DisableOn: []string{"windows"}, Path: "http/interactsh-stop-at-first-match.yaml", TestCase: &httpInteractshStopAtFirstMatchRequest{}}, - {DisableOn: []string{"windows"}, Path: "http/default-matcher-condition.yaml", TestCase: &httpDefaultMatcherCondition{}}, + {DisableOn: []string{"windows", "darwin"}, Path: "http/interactsh.yaml", TestCase: &httpInteractshRequest{}}, + {DisableOn: []string{"windows", "darwin"}, Path: "http/interactsh-stop-at-first-match.yaml", TestCase: &httpInteractshStopAtFirstMatchRequest{}}, + {DisableOn: []string{"windows", "darwin"}, Path: "http/default-matcher-condition.yaml", TestCase: &httpDefaultMatcherCondition{}}, }