Skip to content

Commit

Permalink
fix: date calendaire
Browse files Browse the repository at this point in the history
  • Loading branch information
victor committed Oct 17, 2024
1 parent 9fa5cb6 commit 7b8e25a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ describe("DureePreavisLicenciement", () => {
});

it("should display expected answer", () => {
expect(screen.queryAllByText(/8 jours/g)[0]).toBeInTheDocument();
expect(
screen.queryAllByText(/8 jours calendaires/g)[0]
).toBeInTheDocument();

expect(
screen.queryAllByText(
Expand All @@ -136,7 +138,9 @@ describe("DureePreavisLicenciement", () => {
});

it("should display expected answer", () => {
expect(screen.queryAllByText(/15 jours/g)[0]).toBeInTheDocument();
expect(
screen.queryAllByText(/15 jours calendaires/g)[0]
).toBeInTheDocument();

expect(
screen.queryAllByText(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5107,7 +5107,7 @@
"type": "préavis de Licenciement",
"idcc": 3239,
"typeRupture": null,
"answer": "8 jours",
"answer": "8 jours calendaires",
"answer2": null,
"answer3": "8",
"refs": [
Expand All @@ -5131,7 +5131,7 @@
"type": "préavis de Licenciement",
"idcc": 3239,
"typeRupture": null,
"answer": "15 jours",
"answer": "15 jours calendaires",
"answer2": null,
"answer3": "15",
"refs": [
Expand Down

0 comments on commit 7b8e25a

Please sign in to comment.