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

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

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
```