🔨 La medecine du travail n'est pas une cotisation patronale
parent
004d3d8f04
commit
fb54d4cb90
|
@ -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]
|
||||
|
|
|
@ -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)
|
||||
})
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue