Skip to content

Commit

Permalink
feat: revert calendaire
Browse files Browse the repository at this point in the history
  • Loading branch information
victor committed Oct 17, 2024
1 parent d2925ce commit 4a2c350
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ describe("DureePreavisLicenciement", () => {

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

expect(screen.queryAllByText(/Article 162.4.1/)[0]).toBeInTheDocument();
});
});

Expand All @@ -69,6 +71,8 @@ describe("DureePreavisLicenciement", () => {

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

expect(screen.queryAllByText(/Article 162.4.1/)[0]).toBeInTheDocument();
});
});

Expand All @@ -82,6 +86,8 @@ describe("DureePreavisLicenciement", () => {

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

expect(screen.queryAllByText(/Article 162.4.1/)[0]).toBeInTheDocument();
});
});
});
Expand All @@ -108,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 @@ -130,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 4a2c350

Please sign in to comment.