mirror of
https://github.com/coder/code-server.git
synced 2024-11-23 20:52:38 +03:00
10 lines
112 B
Bash
Executable File
10 lines
112 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
bats ./test/scripts
|
|
}
|
|
|
|
main "$@"
|