UNPKG

154 BJavaScriptView Raw
1const {expect} = require('chai')
2const {add} = require('../src')
3
4describe('add', () => {
5 it('1+2=3', () => {
6 expect(add(1, 2)).to.equal(3)
7 })
8})