10 lines
273 B
Bash
10 lines
273 B
Bash
|
#!/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
|