Skip to content

Commit

Permalink
Update jobCard test
Browse files Browse the repository at this point in the history
  • Loading branch information
AliFahed committed Nov 16, 2024
1 parent a53728c commit 357c3ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __tests__/unit/components/jobCard.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe("JobCard Component", () => {
expect(
screen.getByText(`${job.job_city}, ${job.job_country}`)
).toBeInTheDocument();
expect(screen.getByText(job.job_employment_type)).toBeInTheDocument();
expect(screen.getAllByText(job.job_employment_type)).toHaveLength(2);
expect(
screen.getByText(
`Uploaded on: ${new Date(
Expand Down

0 comments on commit 357c3ea

Please sign in to comment.