Archived
1
0

refactor: test-e2e.sh script

This commit is contained in:
Joe Previte
2021-04-13 17:31:56 -07:00
parent 6c3bb101cd
commit 92b7c1e9a8
3 changed files with 20 additions and 23 deletions

View File

@ -3,19 +3,9 @@ set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
# We must keep jest in a sub-directory. See ../../test/package.json for more
# information. We must also run it from the root otherwise coverage will not
# include our source files.
if [[ -z ${PASSWORD-} ]] || [[ -z ${CODE_SERVER_ADDRESS-} ]]; then
echo "The end-to-end testing suites rely on your local environment"
echo -e "\n"
echo "Please set the following environment variables locally:"
echo " \$PASSWORD"
echo " \$CODE_SERVER_ADDRESS"
echo -e "\n"
exit 1
fi
CS_DISABLE_PLUGINS=true ./test/node_modules/.bin/jest "$@" --config ./test/jest.e2e.config.ts --runInBand
cd test
# TODO@jsjoeio remove the test-match
PASSWORD=e45432jklfdsab CODE_SERVER_ADDRESS=http://localhost:8080 yarn folio --config=config.ts --test-match login.test.ts --reporter=list
}
main "$@"