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.
- Host: GitHub
- URL: https://github.com/vertocode/jest-unit-tests
- Owner: vertocode
- Created: 2021-10-03T18:50:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-03T18:52:56.000Z (over 3 years ago)
- Last Synced: 2025-02-13T08:52:48.675Z (4 months ago)
- Topics: jest-tests, json-api, json-server, vue-js, vue-router
- Language: JavaScript
- Homepage:
- Size: 179 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```