remix-project mirror
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.
remix-project/ci/browser_tests.sh

33 lines
602 B

8 years ago
#!/usr/bin/env bash
8 years ago
set -e
7 years ago
setupRemixd () {
mkdir remixdSharedfolder
cd contracts
7 years ago
echo 'sharing folder: '
echo $PWD
./../node_modules/remixd/bin/remixd -s $PWD --remix-ide http://127.0.0.1:8080 &
7 years ago
cd ..
}
BUILD_ID=${CIRCLE_BUILD_NUM:-${TRAVIS_JOB_NUMBER}}
echo "$BUILD_ID"
8 years ago
TEST_EXITCODE=0
npm run ganache-cli &
8 years ago
npm run serve &
7 years ago
setupRemixd
sleep 5
8 years ago
npm run nightwatch_local_solidityUnitTests || TEST_EXITCODE=1
#npm run nightwatch_parallel || TEST_EXITCODE=1
#npm run nightwatch_local_runAndDeploy || TEST_EXITCODE=1
8 years ago
echo "$TEST_EXITCODE"
if [ "$TEST_EXITCODE" -eq 1 ]
8 years ago
then
exit 1
fi