10 lines
273 B
Bash
Executable file
10 lines
273 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
SCRIPT_DIR="$(cd -- "$(dirname -- "$0")" && pwd)"
|
|
cd "$SCRIPT_DIR/tool"
|
|
|
|
jq -n -r -L . "include \"testLib\"; testLibMain"
|
|
jq -n -r -L . "include \"tests\"; testsMain" \
|
|
--slurpfile "file:testdata/tests_export.json" testdata/tests_export.json |