2024-07-01 14:17:54 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
function abort() {
|
|
|
|
echo "test case `$1` has failed" 1>&2
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "Running tests..."
|
|
|
|
|
2024-07-01 17:25:45 +00:00
|
|
|
echo "Running test local-import..."
|
2024-07-01 14:17:54 +00:00
|
|
|
typst compile tests/local-import/main.typ --root . || abort "local-import"
|
|
|
|
|
|
|
|
echo "Tests completed successfully"
|