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.sh

35 lines
779 B

8 years ago
#!/usr/bin/env bash
8 years ago
set -e
7 years ago
setupRemixd () {
mkdir remixdSharedfolder
5 years ago
cd apps/remix-ide/contracts
7 years ago
echo 'sharing folder: '
echo $PWD
../../../node_modules/.bin/remixd -s $PWD --remix-ide http://127.0.0.1:8080 &
5 years ago
cd ../../..
7 years ago
}
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_parallel || TEST_EXITCODE=1
4 years ago
TESTFILES=$(circleci tests glob "./apps/remix-ide/test-browser/tests/**/*.test.js" | circleci tests split --split-by=timings)
for TESTFILE in $TESTFILES; do
./node_modules/.bin/nightwatch --config ./apps/remix-ide/nightwatch.js --env chrome $TESTFILE || TEST_EXITCODE=1
done
8 years ago
echo "$TEST_EXITCODE"
if [ "$TEST_EXITCODE" -eq 1 ]
8 years ago
then
exit 1
fi