code-server/ci/dev/test.sh

14 lines
168 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
2020-11-04 04:24:06 +07:00
cd test/test-plugin
make -s out/index.js
2020-11-04 09:53:16 +07:00
cd "$OLDPWD"
2021-01-12 01:45:45 +07:00
yarn jest "$@"
}
main "$@"