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/apps/remix-ide/ci/browser_tests_firefox.sh

31 lines
595 B

#!/usr/bin/env bash
set -e
setupRemixd () {
5 years ago
SHAREDDIR="/apps/remix-ide/contracts"
echo 'sharing folder: '
5 years ago
echo $PWD$SHAREDDIR
5 years ago
remixd -s $PWD$SHAREDDIR --remix-ide http://127.0.0.1:8080 &
cd $PWD
}
BUILD_ID=${CIRCLE_BUILD_NUM:-${TRAVIS_JOB_NUMBER}}
echo "$BUILD_ID"
TEST_EXITCODE=0
npm run ganache-cli &
npm run serve &
setupRemixd
sleep 5
5 years ago
TESTFILES=$(circleci tests glob "./apps/remix-ide/test-browser/tests/**/*.test.js" | circleci tests split --split-by=timings)
npm run nightwatch_local_firefox $TESTFILES
echo "$TEST_EXITCODE"
if [ "$TEST_EXITCODE" -eq 1 ]
then
exit 1
fi