Skip to content

Commit

Permalink
Fix: mongo db jpa test to spring boot test
Browse files Browse the repository at this point in the history
  • Loading branch information
Hawardshin committed Nov 19, 2024
1 parent c563f70 commit 31eab62
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit.jupiter.SpringExtension;

import capstone.relation.websocket.chat.domain.Chat;
import capstone.relation.workspace.WorkSpace;
import capstone.relation.workspace.repository.WorkSpaceRepository;

@DataJpaTest
@SpringBootTest
@ExtendWith(SpringExtension.class)
@DisplayName("ChatRepository JPA 테스트")
class ChatRepositoryTest {
Expand Down

0 comments on commit 31eab62

Please sign in to comment.