Skip to content

Commit

Permalink
adds test
Browse files Browse the repository at this point in the history
  • Loading branch information
MattBarnabo committed May 10, 2024
1 parent c6a0b3a commit 55ebe71
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/__tests__/NotesCard.test.js
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()
})

0 comments on commit 55ebe71

Please sign in to comment.