-
Notifications
You must be signed in to change notification settings - Fork 0
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
c6a0b3a
commit 55ebe71
Showing
1 changed file
with
23 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import React from "react" | ||
import { render, screen } from "@testing-library/react" | ||
import { BrowserRouter } from "react-router-dom" | ||
import NotesCard from "../components/NotesCard" | ||
|
||
test("renders the NotesCard component", () => { | ||
const note = { | ||
id: 1, | ||
title: "Wary message for Rhea Pollster", | ||
creator: 1, | ||
created_at: "May 10, 2024" | ||
} | ||
render( | ||
<BrowserRouter> | ||
<NotesCard key={note.id} note={note} /> | ||
</BrowserRouter> | ||
) | ||
const notesCardTitle = screen.getByText(note.title) | ||
expect(notesCardTitle).toBeInTheDocument() | ||
|
||
const notesCardDate = screen.getByText(note.created_at) | ||
expect(notesCardDate).toBeInTheDocument() | ||
}) |