mirror of https://github.com/pelias/api.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
571 B
25 lines
571 B
10 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
if [ -d test/acceptance/acceptance-tests ]; then
|
||
|
rm -rf test/acceptance/acceptance-tests
|
||
|
fi
|
||
|
|
||
|
if [ "$1" == "production" ]; then
|
||
|
git clone -b production --single-branch https://github.com/pelias/acceptance-tests.git test/acceptance/acceptance-tests
|
||
|
else
|
||
|
git clone https://github.com/pelias/acceptance-tests.git test/acceptance/acceptance-tests
|
||
|
fi
|
||
|
|
||
|
cd test/acceptance/acceptance-tests
|
||
|
npm install
|
||
|
|
||
|
if [ "$1" == "production" ]; then
|
||
|
node test -e prod
|
||
|
else
|
||
|
node test -e stage
|
||
|
fi
|
||
|
|
||
|
cd ../../../ && rm -rf test/acceptance/acceptance-tests
|