code-server-2/ci/dev/test.sh

14 lines
201 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
2020-11-03 21:24:06 +00:00
cd test/test-plugin
make -s out/index.js
2020-11-04 02:53:16 +00:00
cd "$OLDPWD"
2020-10-30 03:18:07 +00:00
mocha -r ts-node/register ./test/*.test.ts "$@"
}
main "$@"