noredink-ui/script/run-axe.sh
2020-03-06 20:00:34 +01:00

13 lines
260 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
# start a web server in the background and tear it down when exiting
./script/serve.sh public &
SERVER_PID=$!
cleanup() {
kill "$SERVER_PID"
}
trap cleanup EXIT INT
node script/axe-puppeteer.js http://localhost:8000