Skip to content
Permalink
master
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 25 lines (17 sloc) 543 Bytes
#!/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