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

https://github.com/vertocode/jest-unit-tests

Base code of my studies with jest unit tests. Jest is a JavaScript testing framework designed to ensure correctness of any JavaScript codebase.
https://github.com/vertocode/jest-unit-tests

jest-tests json-api json-server vue-js vue-router

Last synced: 3 months ago
JSON representation

Base code of my studies with jest unit tests. Jest is a JavaScript testing framework designed to ensure correctness of any JavaScript codebase.

Awesome Lists containing this project

README

        

# testing

## Setup do Projeto
```
npm install
```

### Ambiente de Desenvolvimento
```
npm run serve
```

#### Configurando a api Fake

Instalar o json-server globalmente:

```
npm install -g json-server
```

Iniciando a api fake de leilões;

```
json-server --watch db.json
```