This file contains hidden or 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
#!/bin/sh | |
# Example run-folder.sh env.json collection.json "My Folder" | |
echo "Generating Temporary Environment" | |
newman run "${2}" --environment "${1}" --silent --export-env /tmp/temp-newman-env.json --folder "Fixtures" | |
newman run "${2}" --environment /tmp/temp-newman-env.json --bail --reporters cli --folder "${3}" |