import { expect } from 'chai' import Lib from '../source/engine/index' describe('indeps', function() { it('should compute income for indépendant', function() { let values = Lib.evaluate(['revenu net après impôt'], { "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(39764, 1) }) })