mirror of
https://github.com/danog/code-server.git
synced 2024-12-02 09:38:32 +01:00
10 lines
112 B
Bash
10 lines
112 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
main() {
|
||
|
cd "$(dirname "$0")/../.."
|
||
|
bats ./test/scripts
|
||
|
}
|
||
|
|
||
|
main "$@"
|