mirror of
https://github.com/danog/code-server.git
synced 2024-11-27 04:45:52 +01:00
14 lines
168 B
Bash
Executable File
14 lines
168 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"
|
|
yarn jest "$@"
|
|
}
|
|
|
|
main "$@"
|