Jest is a delightful JavaScript testing framework.
Basic Test
typescript
describe('Math', () => {
it('adds numbers', () => {
expect(add(2, 3)).toBe(5);
});
});Jest makes testing simple and enjoyable.
Master Jest complete testing framework with snapshots and mocking
Jest is a delightful JavaScript testing framework.
describe('Math', () => {
it('adds numbers', () => {
expect(add(2, 3)).toBe(5);
});
});Jest makes testing simple and enjoyable.