Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
FAQ/cucumberTest.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
25 lines (17 sloc)
543 Bytes
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
#!/usr/bin/env bash | |
# force the script to exit on first fail | |
set -e | |
# create any directories needed by the test script | |
mkdir -p screenshots | |
# delete any local databases (if you are using them) | |
rm -rf *.db | |
# install packages if none found | |
# [ ! -d "node_modules" ] && echo "INSTALLING MODULES" && npm install | |
# start the web server in background mode | |
node index.js& | |
# run the test suite in background mode | |
node_modules/.bin/cucumber-js ./features -r ./steps & | |
# wait for the tests to complete | |
sleep 100 | |
# kill the web server | |
pkill node |