UNPKG

instantjob-recruiter-client

Version:

a set of tools for creating an instantjob recruiter react client

11 lines (9 loc) 242 B
import {expect} from 'chai' import {sum} from '../' const {describe, it} = global describe('sum', () => { it('should add two numbers correctly', async () => { const result = await sum(10, 20) expect(result).to.be.equal(30) }) })