@@ -13,23 +13,23 @@ Feature: Slack Integration
1313 Scenario : Create a Slack integration channel returns "Bad Request" response
1414 Given new "CreateSlackIntegrationChannel" request
1515 And request contains "account_name" parameter from "REPLACE.ME"
16- And body with value {"display" : {"message" : true, "notified" : true, "snapshot" : true, "tags" : true}, "name" : "#general" }
16+ And body with value {"display" : {"message" : true, "muting" : false, " notified" : true, "snapshot" : true, "tags" : true}, "name" : "#general" }
1717 When the request is sent
1818 Then the response status is 400 Bad Request
1919
2020 @generated @skip @team:DataDog/saas-integrations
2121 Scenario : Create a Slack integration channel returns "Item Not Found" response
2222 Given new "CreateSlackIntegrationChannel" request
2323 And request contains "account_name" parameter from "REPLACE.ME"
24- And body with value {"display" : {"message" : true, "notified" : true, "snapshot" : true, "tags" : true}, "name" : "#general" }
24+ And body with value {"display" : {"message" : true, "muting" : false, " notified" : true, "snapshot" : true, "tags" : true}, "name" : "#general" }
2525 When the request is sent
2626 Then the response status is 404 Item Not Found
2727
2828 @generated @skip @team:DataDog/saas-integrations
2929 Scenario : Create a Slack integration channel returns "OK" response
3030 Given new "CreateSlackIntegrationChannel" request
3131 And request contains "account_name" parameter from "REPLACE.ME"
32- And body with value {"display" : {"message" : true, "notified" : true, "snapshot" : true, "tags" : true}, "name" : "#general" }
32+ And body with value {"display" : {"message" : true, "muting" : false, " notified" : true, "snapshot" : true, "tags" : true}, "name" : "#general" }
3333 When the request is sent
3434 Then the response status is 200 OK
3535
@@ -107,7 +107,7 @@ Feature: Slack Integration
107107 Given new "UpdateSlackIntegrationChannel" request
108108 And request contains "account_name" parameter from "REPLACE.ME"
109109 And request contains "channel_name" parameter from "REPLACE.ME"
110- And body with value {"display" : {"message" : true, "notified" : true, "snapshot" : true, "tags" : true}, "name" : "#general" }
110+ And body with value {"display" : {"message" : true, "muting" : false, " notified" : true, "snapshot" : true, "tags" : true}, "name" : "#general" }
111111 When the request is sent
112112 Then the response status is 400 Bad Request
113113
@@ -116,7 +116,7 @@ Feature: Slack Integration
116116 Given new "UpdateSlackIntegrationChannel" request
117117 And request contains "account_name" parameter from "REPLACE.ME"
118118 And request contains "channel_name" parameter from "REPLACE.ME"
119- And body with value {"display" : {"message" : true, "notified" : true, "snapshot" : true, "tags" : true}, "name" : "#general" }
119+ And body with value {"display" : {"message" : true, "muting" : false, " notified" : true, "snapshot" : true, "tags" : true}, "name" : "#general" }
120120 When the request is sent
121121 Then the response status is 404 Item Not Found
122122
@@ -125,6 +125,6 @@ Feature: Slack Integration
125125 Given new "UpdateSlackIntegrationChannel" request
126126 And request contains "account_name" parameter from "REPLACE.ME"
127127 And request contains "channel_name" parameter from "REPLACE.ME"
128- And body with value {"display" : {"message" : true, "notified" : true, "snapshot" : true, "tags" : true}, "name" : "#general" }
128+ And body with value {"display" : {"message" : true, "muting" : false, " notified" : true, "snapshot" : true, "tags" : true}, "name" : "#general" }
129129 When the request is sent
130130 Then the response status is 200 OK
0 commit comments