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 "$@"
|