1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-08 22:15:02 +00:00
mon-entreprise/test/indépendants.test.js
2019-04-09 11:01:07 +02:00

17 lines
453 B
JavaScript

import { expect } from 'chai'
import Syso from '../source/engine/index'
describe('indeps', function() {
it('should compute income for indépendant', function() {
let values = Syso.evaluate(['revenu net'], {
"entreprise . chiffre d'affaires": 70000,
'entreprise . charges': 1000,
indépendant: 'oui',
'auto-entrepreneur': 'non',
'contrat salarié': 'non',
période: 'année'
})
expect(values[0]).to.be.closeTo(39765, 1)
})
})