vscode/scripts/test-documentation.sh

22 lines
539 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2018-06-05 16:02:59 +02:00
set -e
if [[ "$OSTYPE" == "darwin"* ]]; then
realpath() { [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"; }
ROOT=$(dirname $(dirname $(realpath "$0")))
VSCODEUSERDATADIR=`mktemp -d -t 'myuserdatadir'`
else
ROOT=$(dirname $(dirname $(readlink -f $0)))
VSCODEUSERDATADIR=`mktemp -d 2>/dev/null`
fi
cd $ROOT
echo "Runs tests against the current documentation in https://github.com/microsoft/vscode-docs/tree/vnext"
2018-06-05 16:02:59 +02:00
# Tests in AMD
./scripts/test.sh --runGlob **/*.releaseTest.js "$@"
rm -r $VSCODEUSERDATADIR