fait passer les test concernant l'ajout de transport

pull/272/head
Johan Girod 2018-06-28 17:01:31 +02:00
parent 840f274cca
commit fc03240149
2 changed files with 3 additions and 3 deletions

View File

@ -60,7 +60,6 @@ class Distribution extends Component<Props, State> {
const {
répartition,
cotisationMaximum,
réductionsDeCotisations,
total,
salaireChargé,
salaireNet,

View File

@ -9,7 +9,8 @@ let state = {
form: {
conversation: {
values: {
'contrat salarié': { salaire: { 'brut de base': '2300' } }
'contrat salarié': { salaire: { 'brut de base': '2300' } },
entreprise: { effectif: '50' }
}
}
},
@ -41,7 +42,7 @@ describe('pay slip selector', function() {
it('should sum all cotisations', function() {
const montantTotalCotisations = paySlip.totalCotisations
expect(montantTotalCotisations.partPatronale).to.be.closeTo(919, 5)
expect(montantTotalCotisations.partPatronale).to.be.closeTo(992, 5)
expect(montantTotalCotisations.partSalariale).to.be.closeTo(520, 5)
})