Last active
December 12, 2019 14:17
-
-
Save loopDelicious/c8c43557e0229e5c20341913a42cf528 to your computer and use it in GitHub Desktop.
Integrate API tests with Postman, Newman, and Travis CI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: node_js | |
node_js: | |
- "8.2.1" | |
install: | |
- npm install newman | |
before_script: | |
- node --version | |
- npm --version | |
- node_modules/.bin/newman --version | |
script: | |
- node_modules/.bin/newman run tests/bitcoinz.postman_collection.json -e tests/tests.postman_environment.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment