UNPKG

cpt-waffle-lotide

Version:
7 lines (6 loc) 176 B
import average from '../average'; describe('average() tests', ():void => { it('checks if [3, 5, 7] is average to 5', ():void => { expect(average([3, 5, 7])).toBe(5); }) })