Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mrdulin/jest-v26-codelab
- Owner: mrdulin
- License: mit
- Created: 2020-12-11T04:41:47.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-27T07:42:48.000Z (about 1 year ago)
- Last Synced: 2024-03-02T10:34:07.080Z (9 months ago)
- Topics: jestjs, react-router-dom, reactjs, typescript, unit-testing
- Language: TypeScript
- Homepage:
- Size: 1.76 MB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```