Skip to content

Commit

Permalink
testing numeric value in minduration
Browse files Browse the repository at this point in the history
  • Loading branch information
jose-carlos-sousa committed Mar 13, 2024
1 parent 2577513 commit 55413c3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions test/end-to-end/offer.js
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,19 @@ describe("Offer endpoint tests", () => {
expect(res.status).toBe(HTTPStatus.UNPROCESSABLE_ENTITY);
});

test("should fail jobMinDuration isn't numeric value", async () => {
const offer_params = generateTestOffer({
jobMaxDuration: 8,
jobMinDuration: "nonNumeric",
owner: test_company._id,
});
const res = await request()
.post("/offers/new")
.send(withGodToken(offer_params));
expect(res.status).toBe(HTTPStatus.UNPROCESSABLE_ENTITY);
});


test("should succeed if jobMaxDuration is greater than jobMinDuration", async () => {
const offer_params = generateTestOffer({
jobMinDuration: 8,
Expand Down

0 comments on commit 55413c3

Please sign in to comment.