Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mrdulin/jest-v26-codelab

Learning jestjs v26.x.x testing framework by examples
https://github.com/mrdulin/jest-v26-codelab

jestjs react-router-dom reactjs typescript unit-testing

Last synced: 2 days ago
JSON representation

Learning jestjs v26.x.x testing framework by examples

Awesome Lists containing this project

README

        

# jest-v26-codelab

Learning jestjs v26.x.x testing framework by examples

## How to run test only changed

`--onlyChanged`

Alias: -o. Attempts to identify which tests to run based on which files have changed in the current repository. Only works if you're running tests in a git/hg repository at the moment and requires a static dependency graph (ie. no dynamic requires).

```bash
npm t -- -o
```