We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dd520e commit ac1e2beCopy full SHA for ac1e2be
spec/client_spec.rb
@@ -550,6 +550,8 @@ def loop_times(times)
550
before(:all) do
551
@user_id = SecureRandom.uuid
552
@client.update_users([{ id: @user_id }])
553
+ @channel = @client.channel('team', channel_id: SecureRandom.uuid)
554
+ @channel.create(@user_id)
555
@channel.add_members([@user_id])
556
end
557
@@ -584,6 +586,8 @@ def loop_times(times)
584
586
@user_id1 = SecureRandom.uuid
585
587
@user_id2 = SecureRandom.uuid
588
@client.update_users([{ id: @user_id1 }, { id: @user_id2 }])
589
590
+ @channel.create(@user_id1)
591
@channel.add_members([@user_id1, @user_id2])
592
593
0 commit comments