12 lines
179 B
Bash
Executable File
12 lines
179 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#MISE description="Run HTTP tests against production"
|
|
|
|
set -e
|
|
|
|
source "$(dirname "$0")/../_helpers.sh"
|
|
|
|
ensure_working_directory!
|
|
|
|
hurl --test test/prod.hurl
|