-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5171309
commit 6abbce2
Showing
16 changed files
with
512 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { render, screen } from "@/test-utils"; | ||
|
||
import ChatConversation from "./Conversation"; | ||
|
||
describe("Conversaton component", () => { | ||
const handleConversationCallback = jest.fn(); | ||
|
||
it("renders a chat conversation", () => { | ||
render( | ||
<ChatConversation conversationCallback={handleConversationCallback} />, | ||
); | ||
|
||
const wrapper = screen.getByTestId("chat-conversation"); | ||
expect(wrapper).toBeInTheDocument(); | ||
}); | ||
}); |
Oops, something went wrong.