2022-06-25 00:33:38 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
help() {
|
2024-10-18 12:31:28 +08:00
|
|
|
echo >&2 " You can build the standalone release with 'npm run release:standalone'"
|
2022-06-25 00:33:38 +08:00
|
|
|
echo >&2 " Or you can pass in a custom path."
|
2024-10-18 12:31:28 +08:00
|
|
|
echo >&2 " CODE_SERVER_PATH='/var/tmp/coder/code-server/bin/code-server' npm run test:integration"
|
2022-06-25 00:33:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# Make sure a code-server release works. You can pass in the path otherwise it
|
|
|
|
# will look for release-standalone in the current directory.
|
|
|
|
#
|
|
|
|
# This is to make sure we don't have Node version errors or any other
|
|
|
|
# compilation-related errors.
|
|
|
|
main() {
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
|
|
|
|
source ./ci/lib.sh
|
|
|
|
|
|
|
|
local path="$RELEASE_PATH-standalone/bin/code-server"
|
|
|
|
if [[ ! ${CODE_SERVER_PATH-} ]]; then
|
|
|
|
echo "Set CODE_SERVER_PATH to test another build of code-server"
|
|
|
|
else
|
|
|
|
path="$CODE_SERVER_PATH"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Running tests with code-server binary: '$path'"
|
|
|
|
|
|
|
|
if [[ ! -f $path ]]; then
|
|
|
|
echo >&2 "No code-server build detected"
|
|
|
|
echo >&2 "Looked in $path"
|
|
|
|
help
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
CODE_SERVER_PATH="$path" CS_DISABLE_PLUGINS=true ./test/node_modules/.bin/jest "$@" --coverage=false --testRegex "./test/integration" --testPathIgnorePatterns "./test/integration/fixtures"
|
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|