💾 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
⬅️ Previous capture (2023-01-29)
-=-=-=-=-=-=-
#!/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
---