Created
October 8, 2013 14:02
-
-
Save netmilk/6885179 to your computer and use it in GitHub Desktop.
Example Travis CI dotfile for testing APIs with Dredd
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: | |
- 0.8 | |
- 0.10 | |
before_install: | |
- npm install -g dredd | |
script: ./scripts/test | |
services: | |
- mongodb | |
before_script: | |
- mongo mydb_test --eval 'db.addUser("test", "test");' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment