2020-04-30 11:52:54 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
main() {
|
|
|
|
cd "$(dirname "$0")/../.."
|
2021-01-21 23:39:04 +00:00
|
|
|
# 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.
|
2021-02-11 18:18:15 +00:00
|
|
|
if [[ -z ${PASSWORD-} ]] || [[ -z ${CODE_SERVER_ADDRESS-} ]]; then
|
2021-02-04 18:09:19 +00:00
|
|
|
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
|
2021-04-02 21:50:31 +00:00
|
|
|
CS_DISABLE_PLUGINS=true ./test/node_modules/.bin/jest "$@" --config ./test/jest.e2e.config.ts --runInBand
|
2020-04-30 11:52:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|