-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(rupture-co): résultat au niveau de la 176 avec une règle qui avait un problème #5840
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pour moi, ça m'a l'air d'être bon, sur les tests on a aucune régression