UNPKG

145 BPlain TextView Raw
1import {expect} from 'chai'
2
3import {add} from '../src'
4
5describe('add', () => {
6 it('1+2=3', () => {
7 expect(add(1, 2)).to.equal(3)
8 })
9})