parent
cbb24cad54
commit
85bae9c821
@ -1,6 +1,14 @@ |
||||
#!/bin/bash |
||||
#!/usr/bin/env bash |
||||
set -e |
||||
TEST_EXITCODE=0 |
||||
yarn run build:e2e && node ./splice_tests.js |
||||
TESTFILES=$(node ./splice_tests.js | grep -i 'git' | circleci tests split --split-by=timings) |
||||
for TESTFILE in $TESTFILES; do |
||||
yarn run test --useIsoGit --test ./build-e2e/remixdesktop/test/tests/app/${TESTFILE} || TEST_EXITCODE=1 |
||||
done |
||||
|
||||
for testfile in build-e2e/remixdesktop/test/tests/app/git*.js |
||||
do |
||||
yarn test:isogit --test $testfile |
||||
done |
||||
echo "$TEST_EXITCODE" |
||||
if [ "$TEST_EXITCODE" -eq 1 ] |
||||
then |
||||
exit 1 |
||||
fi |
||||
|
Loading…
Reference in new issue