13 lines
394 B
Bash
13 lines
394 B
Bash
#!/bin/sh
|
|
set -eu
|
|
PORT="${1:-8081}"
|
|
BASE="http://127.0.0.1:${PORT}"
|
|
|
|
echo "Smoke test ${BASE}"
|
|
curl -fsSI "${BASE}/" | head -n 5
|
|
curl -fsSI "${BASE}/pagefind/pagefind.js" | head -n 5
|
|
curl -fsSI "${BASE}/pagefind/pagefind-ui.js" | head -n 5 || true
|
|
curl -fsSI "${BASE}/pagefind/pagefind-ui.css" | head -n 5 || true
|
|
curl -fsSI "${BASE}/pagefind/pagefind-entry.json" | head -n 5 || true
|
|
echo "OK"
|