File size: 556 Bytes
6a7089a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash
# 10-quick.sh β CLI quick command (nav + snap combined)
source "$(dirname "$0")/common.sh"
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
start_test "pinchtab quick <url>"
pt_ok quick "${FIXTURES_URL}/form.html"
# Quick command navigates and returns snapshot
assert_output_contains "nodes" "returns snapshot nodes"
assert_output_contains "form.html" "navigated to correct page"
end_test
|