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 14 lines (13 sloc) 294 Bytes
#!/usr/bin/env bash
set -e
echo hello
mkdir -p screenshots
mkdir -p trace
mkdir -p databases
cd databases/
rm -rf *.db
cd ..
# [ ! -d "node_modules" ] && echo "INSTALLING MODULES" && npm install
node index.js&
node_modules/.bin/jest --runInBand --detectOpenHandles acceptance\ tests/*
kill %1