Skip to content

Commit bbec9dd

Browse files
committed
Run all the integration tests - 2025-01-16 PT
1 parent 24d0e50 commit bbec9dd

5 files changed

Lines changed: 11 additions & 2 deletions

File tree

json-logs/raw/audit/v1/actions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,8 @@
226226
"slack_ai_suggested_todo_generated",
227227
"slack_ai_suggested_todo_regenerated",
228228
"slack_ai_suggested_todo_dismissed",
229-
"slack_ai_todo_title_generated"
229+
"slack_ai_todo_title_generated",
230+
"pref.anomaly_event_response_changed"
230231
],
231232
"user": [
232233
"custom_tos_accepted",

json-logs/samples/api/conversations.list.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@
6262
""
6363
],
6464
"user": [
65-
"W00000000"
65+
"W00000000",
66+
"U00000000"
6667
]
6768
},
6869
"threads_restricted_to": {

slack-api-client/src/main/java/com/slack/api/audit/Actions.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ private WorkspaceOrOrg() {
146146
public static final String pref_flag_message_flagger_outcome_notif = "pref.flag_message_flagger_outcome_notif";
147147
public static final String pref_flag_message_author_outcome_notif = "pref.flag_message_author_outcome_notif";
148148
public static final String pref_allow_lists = "pref.allow_lists";
149+
public static final String pref_anomaly_event_response_change = "pref.anomaly_event_response_changed";
149150
public static final String manual_export_downloaded = "manual_export_downloaded";
150151
public static final String manual_export_deleted = "manual_export_deleted";
151152
public static final String scheduled_export_downloaded = "scheduled_export_downloaded";

slack-api-client/src/test/java/test_with_remote_apis/methods/files_remote_Test.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
import lombok.extern.slf4j.Slf4j;
1717
import org.junit.AfterClass;
1818
import org.junit.BeforeClass;
19+
import org.junit.Ignore;
1920
import org.junit.Test;
2021

2122
import java.io.ByteArrayOutputStream;
@@ -205,6 +206,7 @@ public void updateAndShare() throws Exception {
205206

206207
}
207208

209+
@Ignore
208210
@Test
209211
public void updateAndShare_searchable() throws Exception {
210212
String externalId = "test-searchable-external-id-" + System.currentTimeMillis();

slack-api-client/src/test/java/test_with_remote_apis/methods_admin_api/AdminApi_analytics_Test.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import config.SlackTestConfig;
1010
import lombok.extern.slf4j.Slf4j;
1111
import org.junit.AfterClass;
12+
import org.junit.Ignore;
1213
import org.junit.Test;
1314

1415
import java.io.IOException;
@@ -49,6 +50,7 @@ public void getFile_member_error() throws Exception {
4950
}
5051
}
5152

53+
@Ignore
5254
@Test
5355
public void getFile_member_forEach() throws Exception {
5456
if (orgAdminUserToken != null) {
@@ -82,6 +84,7 @@ public void getFile_member_forEach() throws Exception {
8284
}
8385
}
8486

87+
@Ignore
8588
@Test
8689
public void getFile_member_forEach_validation() throws Exception {
8790
if (orgAdminUserToken != null) {
@@ -101,6 +104,7 @@ public void getFile_member_forEach_validation() throws Exception {
101104
}
102105
}
103106

107+
@Ignore
104108
@Test
105109
public void getFile_member_asBytes() throws Exception {
106110
if (orgAdminUserToken != null) {

0 commit comments

Comments
 (0)