💾 Archived View for tbeseda.smol.pub › hurl-test-node-server captured on 2024-06-16 at 12:13:51. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

tbeseda

Home

All Posts

Run Hurl tests against a Node.js server

#!/bin/bash
set -eu # throw if things go bad

echo "Booting server"
npm run start &
serverPid=$!

sleep 2 # a smarter script would ping server

echo -e "\nRunning Hurl tests\n"
npx hurl --test test/integration/*.hurl

echo -e "Stopping server <${serverPid}>"
kill $serverPid

---

All Posts