Jest — Complete Guide
Jest — Complete Guide: free step-by-step lesson with examples, common mistakes, and interview tips — part of React.js Tutorial on Toolliyo Academy.
On this page
React.js Tutorial · Lesson 83 of 100
Jest
Beginner ✓ → Intermediate ✓ → Advanced ✓ → Professional
Professional · 4 — ShopCart projects · ~25 min read · Module 9: Testing & Deployment
Introduction
Professional project lesson: Jest. You will put together routing, data, and UI like a portfolio app. Build one piece at a time — do not rush. Jest is a JavaScript test runner. It finds *.test.js files, runs assertions with expect(), and mocks modules. Automated tests catch bugs when you refactor hooks or utility functions.
A app on your laptop is not finished until it runs somewhere others can open a URL.
When will you use this?
Use when you are ready to put the app online for users or employers to see.
- Shipping means tests pass, build succeeds, and Docker or Azure hosts the static files.
- Companies run CI so broken code never reaches users.
Real-world: test discount calculator
Checkout uses calculateDiscount — Jest unit test covers edge cases before Cypress e2e runs.
Production-style code
import { calculateDiscount } from './pricing';
describe('calculateDiscount', () => {
it('returns 0 for empty cart', () => {
expect(calculateDiscount([])).toBe(0);
});
it('applies 10% for GOLD member', () => {
expect(calculateDiscount([{ price: 1000 }], 'GOLD')).toBe(100);
});
});
What happens in production: Fast unit tests catch pricing bugs that would cost real money in production checkout.
Lesson example (start here)
Copy this smaller example first. Once it works, compare it with the real-world code above.
// sum.test.js
import { sum } from './sum';
test('adds 1 + 2', () => {
expect(sum(1, 2)).toBe(3);
});
Line-by-line walkthrough
| Code | What it means |
|---|---|
// sum.test.js | Comment — notes for humans; the computer ignores it. |
import { sum } from './sum'; | Imports code from React or another file so you can use it here. |
test('adds 1 + 2', () => { | Defines a function — often a component or event handler. |
expect(sum(1, 2)).toBe(3); | Part of the Jest example — read it together with the lines before and after. |
}); | Closes a block started by { or ( above. |
How it works (big picture)
- test() defines a case.
- expect(value).toBe() asserts equality.
- Vite projects often use Vitest (Jest-compatible API) instead.
Do this on your computer
- npm install -D vitest
- Add test script to package.json.
- Write one test for a pure function.
- Read the real-world section and name which part of the app uses this topic.
- Run the example locally and confirm the same behavior in the browser.
- Change one value in the example (text, initial state, or URL) and predict what will happen before you save.
Experiments — try changing this
- Change text or labels in the example and save — watch the browser update.
- Break the code on purpose (remove a bracket), read the error message, then fix it.
Remember
Jest/Vitest runs unit tests. Test pure functions first. expect() for assertions.
Common questions
Jest vs Vitest?
Vitest is faster with Vite; similar syntax to Jest.
How long should I spend on Jest?
Until you can explain it in your own words and run the example without looking at the answer. Beginners often need 30–60 minutes per new hook or routing topic; setup lessons may take one afternoon.
What if I get stuck on Jest?
Re-read the line-by-line walkthrough, check the browser console for red errors, and compare your code character-by-character with the example. Search the exact error text — someone else had it too.
Where is Jest used in real jobs?
See the real-world section above — the same pattern appears in LMS, banking, e-commerce, and SaaS products. Interviewers ask you to explain it using one concrete example from your project or this lesson.
Sign in to ask a question or upvote helpful answers.
No questions yet — be the first to ask!