import { expect } from 'chai'; import { add } from '../src/math/add'; describe('Sample Test 2', () => { it('should able to add number', () => { expect(add(3, 5)).to.equal(8); }); });