tldr/pages/common/jest.md

354 B

jest

A zero-configuration JavaScript testing platform. More information: https://jestjs.io.

  • Run all tests:

jest

  • Run tests whose names match the regex pattern:

jest -t {{spec_name}}

  • Run tests related to uncommitted files:

jest -o

  • Watch files for changes and re-run related tests:

jest --watch

  • Show help:

jest --help