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