jest/run

Run Tests

Run Jest tests

jest
run
test

Command

npm test

Explanation

Runs all test files in the project. Use watch mode for continuous testing during development.

Examples

Run all tests

npm test

Run tests in watch mode

npm test -- --watch

Run tests with coverage report

npm test -- --coverage