https://github.com/leotabosa/jest-basics
Jest basic examples
https://github.com/leotabosa/jest-basics
frontend-testing hacktoberfest hacktoberfest2021 jest testing
Last synced: about 2 months ago
JSON representation
Jest basic examples
- Host: GitHub
- URL: https://github.com/leotabosa/jest-basics
- Owner: leotabosa
- License: mit
- Created: 2021-01-18T21:30:55.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-19T14:36:26.000Z (over 4 years ago)
- Last Synced: 2026-03-31T06:33:00.000Z (3 months ago)
- Topics: frontend-testing, hacktoberfest, hacktoberfest2021, jest, testing
- Language: JavaScript
- Homepage:
- Size: 9.47 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jest-basics
Repository to exemplify testing with Jest on Vue and vanilla JavaScript.
## How to run
After cloning and entering the repository's folder:
1. Install dependencies.
```sh
// yarn
yarn install
```
```sh
// npm
npm install
```
2. Run tests.
```sh
yarn test
```
3. Run tests with coverage.
```sh
yarn test:ci
```