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 2b355f6 commit 5ccf9e9Copy full SHA for 5ccf9e9
test/client.spec.ts
@@ -69,10 +69,10 @@ describe("client", () => {
69
});
70
71
it("getRoomMemberProfile", () => {
72
- return client.getRoomMemberProfile("text_room_id", "test_user_id")
+ return client.getRoomMemberProfile("test_room_id", "test_user_id")
73
.then((res: any) => {
74
equal(res.headers.authorization, "Bearer test_channel_access_token");
75
- equal(res.path, "/group/test_room_id/member/test_user_id");
+ equal(res.path, "/room/test_room_id/member/test_user_id");
76
equal(res.method, "GET");
77
78
0 commit comments