blob: 298f928d677fbf40ffd84348e2cc429b349128dd [file] [log] [blame]
Philipp Schrader54047962022-02-16 21:05:11 -08001import {add} from './basic';
2
3describe('add', () => {
4 it('should sum numbers', () => {
5 expect(3 + 4).toEqual(7);
6 });
7
8 it('should not sum numbers', () => {
9 expect(add(3, 3)).not.toEqual(7);
10 });
11});