Skip to content

Commit

Permalink
Remove invalid test
Browse files Browse the repository at this point in the history
  • Loading branch information
boscar committed Apr 1, 2021
1 parent 064d587 commit 04d399f
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/credit-assessment/validator.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,19 +123,6 @@ describe("Validate loan for credit assessment", () => {
expect(() => validateLoan(loan)).not.toThrowError();
});
});

describe("Given undefined term", () => {
it("Should not throw", () => {
const loan = fixture(
"ICreditAssessmentLoan",
(data: ICreditAssessmentLoan) => {
data.term = undefined;
return data;
}
);
expect(() => validateLoan(loan)).not.toThrowError();
});
});
});

describe("Validate household economy for credit assessment", () => {
Expand Down

0 comments on commit 04d399f

Please sign in to comment.