-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(rupture-co): résultat au niveau de la 176 avec une règle qui avai…
…t un problème (#5840) * fix: bug * fix: ok * fix: ok
- Loading branch information
Showing
2 changed files
with
66 additions
and
10 deletions.
There are no files selected for viewing
57 changes: 57 additions & 0 deletions
57
...ventions/176_industrie_pharmaceutique/__tests__/rupture-conventionnelle/calculate.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import { RuptureConventionnellePublicodes } from "../../../../../publicodes"; | ||
|
||
const engine = new RuptureConventionnellePublicodes( | ||
modelsRuptureConventionnel, | ||
"176" | ||
); | ||
|
||
describe("Gestion de la rupture co pour la CC 176", () => { | ||
describe("Missing args pro", () => { | ||
test("Demande l'age", () => { | ||
const input = { | ||
"contrat salarié . convention collective": "'IDCC0176'", | ||
}; | ||
|
||
const result = engine.calculate(input); | ||
expect(result).toNextMissingRuleBeEqual( | ||
"contrat salarié . convention collective . industrie pharmaceutique . rupture conventionnelle . cadre age" | ||
); | ||
}); | ||
|
||
test("Demande rien du tout", () => { | ||
const input = { | ||
"contrat salarié . convention collective": "'IDCC0176'", | ||
"contrat salarié . convention collective . industrie pharmaceutique . rupture conventionnelle . cadre age": | ||
"50", | ||
}; | ||
|
||
const result = engine.calculate(input); | ||
expect(result).toNextMissingRuleBeEqual(null); | ||
}); | ||
}); | ||
|
||
describe("Calcul de la rupture co", () => { | ||
test("Si age 50 ans", () => { | ||
const result = engine.calculate({ | ||
"contrat salarié . convention collective": "'IDCC0176'", | ||
"contrat salarié . convention collective . industrie pharmaceutique . rupture conventionnelle . cadre age": | ||
"50", | ||
"contrat salarié . indemnité de licenciement . arrêt de travail": "non", | ||
"contrat salarié . indemnité de licenciement . date d'entrée": | ||
"01/01/2021", | ||
"contrat salarié . indemnité de licenciement . date de notification": | ||
"01/01/2024", | ||
"contrat salarié . indemnité de licenciement . date de sortie": | ||
"01/01/2024", | ||
"contrat salarié . indemnité de licenciement . inaptitude suite à un accident ou maladie professionnelle": | ||
"non", | ||
licenciementFauteGrave: "non", | ||
salaryPeriods: | ||
'[{"month":"décembre 2024","value":2600},{"month":"novembre 2024","value":2600},{"month":"octobre 2024","value":2600},{"month":"septembre 2024","value":2600},{"month":"août 2024","value":2600},{"month":"juillet 2024","value":2600},{"month":"juin 2024","value":2600},{"month":"mai 2024","value":2600},{"month":"avril 2024","value":2600},{"month":"mars 2024","value":2600},{"month":"février 2024","value":2600},{"month":"janvier 2024","value":2600}]', | ||
typeContratTravail: "cdi", | ||
}); | ||
console.log(result); | ||
expect(result).toAgreementResultBeEqual(7540, "€"); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters