| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |||||
| 3 | SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||||
| 4 | CURRENT_DIR=$(pwd) | ||||
| 5 | |||||
| Josh Bleecher Snyder | 4936de3 | 2025-05-07 13:50:04 +0000 | [diff] [blame] | 6 | cd "$SCRIPT_DIR" |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 7 | |
| 8 | go test -httprecord ".*" -rewritewant | ||||
| Josh Bleecher Snyder | 4936de3 | 2025-05-07 13:50:04 +0000 | [diff] [blame] | 9 | |
| 10 | cd "$CURRENT_DIR" | ||||