Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Design: 채널바 height 수정 #135

Merged
merged 11 commits into from
Sep 16, 2023
Next Next commit
Test: 채널 참가 mock api 작성
navyjeongs committed Sep 9, 2023
commit dad1da798dff94989d2f74f4389b216ff0cb64c3
4 changes: 4 additions & 0 deletions __mocks__/handlers/channelHandlers.ts
Original file line number Diff line number Diff line change
@@ -64,6 +64,10 @@ const channelHandlers = [
rest.post(SERVER_URL + '/api/channel', (req, res, ctx) => {
return res(ctx.json(postChannels[0]));
}),

rest.post(SERVER_URL + '/api/:channelLink/participant/observer', (req, res, ctx) => {
return res(ctx.json(postChannels[0]));
}),
];

export default channelHandlers;