🔨 La medecine du travail n'est pas une cotisation patronale

pull/703/head
Maxime Quandalle 2019-10-01 11:39:03 +02:00
parent 004d3d8f04
commit fb54d4cb90
No known key found for this signature in database
GPG Key ID: 428641C03D29CA10
3 changed files with 3 additions and 5 deletions

View File

@ -1224,7 +1224,6 @@
- ATMP
- prévoyance obligatoire cadre
- complémentaire santé [employeur]
- médecine du travail
- vieillesse [employeur]
- retraite complémentaire [employeur]
- contribution d'équilibre général [employeur]

View File

@ -46,10 +46,9 @@ describe('pay slip selector', function() {
let cotisationsSanté = (cotisations.find(([branche]) =>
branche.includes('santé')
) || [])[1].map(cotisation => cotisation.nom)
expect(cotisationsSanté).to.have.lengthOf(3)
expect(cotisationsSanté).to.have.lengthOf(2)
expect(cotisationsSanté).to.include('maladie')
expect(cotisationsSanté).to.include('complémentaire santé')
expect(cotisationsSanté).to.include('médecine du travail')
})
it('should sum all cotisations', function() {
@ -59,7 +58,7 @@ describe('pay slip selector', function() {
sal = getRuleFromAnalysis(analysis)(
'contrat salarié . cotisations . salariales'
)
expect(pat.nodeValue).to.be.closeTo(831.4, 5)
expect(pat.nodeValue).to.be.closeTo(824.7, 5)
expect(sal.nodeValue).to.be.closeTo(498, 5)
})

View File

@ -72,7 +72,7 @@ describe('library', function() {
{ extra: sasuRules }
)
expect(revenuDisponible).to.be.closeTo(2309, 1)
expect(revenuDisponible).to.be.closeTo(2311.81, 1)
expect(dividendes).to.be.closeTo(2507, 1)
}).timeout(5000)