Files
code-server/ci/dev/test.sh
2021-01-21 14:06:49 -07:00

15 lines
180 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
cd test/test-plugin
make -s out/index.js
cd "$OLDPWD/test"
yarn
yarn test "$@"
}
main "$@"