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 02c7145
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions test/end-to-end/offer.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,8 @@ describe("Offer endpoint tests", () => {
});
describe("jobMinDuration", () => {
const FieldValidatorTester = BodyValidatorTester("jobMinDuration");
if (BodyValidatorTester("jobType") !== "FREELANCE") {
FieldValidatorTester.isRequired();
FieldValidatorTester.mustBeNumber();
}
FieldValidatorTester.isRequired();
FieldValidatorTester.mustBeNumber();
});
describe("jobMaxDuration", () => {
const FieldValidatorTester = BodyValidatorTester("jobMaxDuration");
Expand Down Expand Up @@ -707,6 +705,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 02c7145

Please sign in to comment.