11 lines
244 B
Bash
Executable file
11 lines
244 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
SCRIPT_DIR="$(cd -- "$(dirname -- "$0")" && pwd)"
|
|
cd "$SCRIPT_DIR"
|
|
|
|
export TYPECHECKING=1
|
|
|
|
${JQ:-jq} -n -r -L tool -L . "include \"testLib\"; testLibMain"
|
|
${JQ:-jq} -n -r -L tool -L . "include \"tests\"; testsMain" |