Files
frontend-bootcamp/step2-04/index.spec.ts
2019-02-15 20:23:26 -08:00

17 lines
342 B
TypeScript

import { square } from '.';
describe('square', () => {
beforeEach(() => {
console.log('this happens before each test');
});
afterEach(() => {
console.log('this happens after each test');
});
it('should be able to give the square of two numbers', () => {
console.log('test');
expect(square(5)).toBe(25);
});
});