-
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.
Merge pull request #398 from nulib/preview/5354-conversations-ui
Handle conversations chat UI.
- Loading branch information
Showing
16 changed files
with
514 additions
and
281 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.