import anthro_zscore_weight_for_age from './z-score-weight-for-age'; import {age_to_months} from './utils'; describe('weight for age', () => { test('It returns the right value for a given weight', () => { expect(anthro_zscore_weight_for_age({ weight: 17, age_in_days: 1522, age_in_months: age_to_months(1522,false) , sex:2, oedema:'n', })).toStrictEqual({ fwei: 0, zwei: 0.24}); }); });