Skip to content

Commit

Permalink
Run all the integration tests - 2024-07-26 PT
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Jul 29, 2024
1 parent 02137af commit 3f3ef44
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
6 changes: 5 additions & 1 deletion json-logs/raw/audit/v1/actions.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,11 @@
"quip_migration_org_mapping_added",
"organization_channel_audit_export_enabled",
"workspace_channel_audit_export_enabled",
"organization_created_migration_intent"
"organization_created_migration_intent",
"organization_accepted_migration_intent",
"organization_declined_migration_intent",
"team_accepted_migration_intent",
"team_declined_migration_intent"
],
"user": [
"custom_tos_accepted",
Expand Down
3 changes: 2 additions & 1 deletion json-logs/samples/api/conversations.list.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@
""
],
"user": [
"W00000000"
"W00000000",
"U00000000"
]
},
"threads_restricted_to": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,10 @@ private WorkspaceOrOrg() {
public static final String organization_channel_audit_export_enabled = "organization_channel_audit_export_enabled";
public static final String workspace_channel_audit_export_enabled = "workspace_channel_audit_export_enabled";
public static final String organization_created_migration_intent = "organization_created_migration_intent";
public static final String organization_accepted_migration_intent = "organization_accepted_migration_intent";
public static final String organization_declined_migration_intent = "organization_declined_migration_intent";
public static final String team_accepted_migration_intent = "team_accepted_migration_intent";
public static final String team_declined_migration_intent = "team_declined_migration_intent";
}

public static class User {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,6 @@ public void channelConversation() throws Exception {
.force(true)
.channel(channel.getId())
.users(Arrays.asList(invitee)));
// TODO: This part fails due to "cant_invite" error as of June 22, 2024
assertThat(inviteResponse.getError(), is(nullValue()));

ConversationsKickResponse kickResponse = slack.methods().conversationsKick(r -> r
Expand Down

0 comments on commit 3f3ef44

Please sign in to comment.