Skip to content
Permalink
2b870277a8
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 15 lines (13 sloc) 422 Bytes
#!/usr/bin/env bash
set -e
echo hello
mkdir -p screenshots
mkdir -p trace
rm -rf *.db
# [ ! -d "node_modules" ] && echo "INSTALLING MODULES" && npm install
node index.js&
node_modules/.bin/jest --runInBand --detectOpenHandles acceptance\ tests/*
read -p "Press enter to continue"
kill %1
# if you are running on unix and the node process is not being destroyed by the kill %1 command above then you can try:
#pkill node