Fix JS error when receiving reply during channel switch (#5582)
Этот коммит содержится в:
коммит произвёл
Christopher Speller
родитель
2e911b77c3
Коммит
e739a91c94
@@ -903,7 +903,6 @@ func TestGetChannel(t *testing.T) {
|
||||
if _, err := Client.GetChannels(""); err == nil {
|
||||
t.Fatal("should have failed - wrong team id")
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
func TestGetMoreChannelsPage(t *testing.T) {
|
||||
@@ -2003,6 +2002,10 @@ func TestViewChannel(t *testing.T) {
|
||||
t.Log(rdata.Member.MsgCount)
|
||||
t.Fatal("message counts don't match")
|
||||
}
|
||||
|
||||
if _, err := Client.DoApiPost(Client.GetTeamRoute()+"/channels/view", "garbage"); err == nil {
|
||||
t.Fatal("should have been an error")
|
||||
}
|
||||
}
|
||||
|
||||
func TestGetChannelMembersByIds(t *testing.T) {
|
||||
|
||||
Ссылка в новой задаче
Block a user