ice/examples/with-jest/tests/add.spec.ts

6 lines
84 B
TypeScript

import add from '../src/add';
test('add', () => {
expect(add(1, 2)).toBe(3);
});