Testing Library
Testing Library
🚀 Jest
function sum(a, b) {
return a + b;
}
test('add 1 + 2 to equal 3', () => {
expect(sum(1, 2)).toBe(3);
});🚀 React Testing Library
Last updated
function sum(a, b) {
return a + b;
}
test('add 1 + 2 to equal 3', () => {
expect(sum(1, 2)).toBe(3);
});Last updated
npm test