Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paradigmadigital/ChaiHttp-sample
Ejemplo Chai HTTP
https://github.com/paradigmadigital/ChaiHttp-sample
Last synced: 16 days ago
JSON representation
Ejemplo Chai HTTP
- Host: GitHub
- URL: https://github.com/paradigmadigital/ChaiHttp-sample
- Owner: paradigmadigital
- Created: 2017-10-20T12:01:43.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-20T12:46:14.000Z (about 7 years ago)
- Last Synced: 2024-08-01T00:46:18.670Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 11
- Watchers: 2
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Testeo de API REST con Mocha y Chai HTTP.
Este API está escrito en nodejs utilizando restify
El API lo encontramos en el fichero server.js
Los test se encuentran en la carpeta test y en el fichero testChaiHTTP.js
Para la realización de los test hemos utilizado Mocha, Chai y Chai HTTP
## Instalación
Instalamos las dependencias del sistema```
$ npm install
```## Ejecucion
Una descargadas las dependencias lanzamos el servidor que contiene la API
```
$ node server.js
```## Ejecucion de los test
para lanzar la ejecucion de los test utilizamos el comando
```
$ mocha test/*.js --timeout 15000
```