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 7b81b8d commit 5d0e3bcCopy full SHA for 5d0e3bc
src/test/java/com/back/domain/chat/room/controller/RoomChatApiControllerTest.java
@@ -205,12 +205,6 @@ void t6() throws Exception {
205
.andExpect(jsonPath("$.data.clearedBy.userId").value(userId))
206
.andExpect(jsonPath("$.data.clearedBy.nickname").value("방장"))
207
.andExpect(jsonPath("$.data.clearedBy.role").value("HOST"));
208
-
209
- // WebSocket 메시지가 전송되었는지 확인
210
- verify(messagingTemplate).convertAndSend(
211
- eq("/topic/room/" + roomId + "/chat-cleared"),
212
- any(ChatClearedNotification.class)
213
- );
214
}
215
216
@Test
0 commit comments