https://github.com/prashanth-sams/javascript-api-test
Basic API testing boilerplate project based on JavaScript
https://github.com/prashanth-sams/javascript-api-test
api api-testing-framework automation-framework automation-test framework mocha postman postman-collection supertest testing
Last synced: 6 months ago
JSON representation
Basic API testing boilerplate project based on JavaScript
- Host: GitHub
- URL: https://github.com/prashanth-sams/javascript-api-test
- Owner: prashanth-sams
- Created: 2021-02-26T18:50:06.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-03T10:01:53.000Z (almost 5 years ago)
- Last Synced: 2025-04-06T23:28:03.566Z (9 months ago)
- Topics: api, api-testing-framework, automation-framework, automation-test, framework, mocha, postman, postman-collection, supertest, testing
- Language: HTML
- Homepage:
- Size: 838 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# API Test
> Basic API testing boilerplate project based on JavaScript
### Test Runner
1. Execute Postman collections
```
npm install -g newman
newman run test.postman_collection.json --suppress-exit-code 1
```

2. Execute Supertest
```
npm install
npm test
```