Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(scripts): print wasm test filter path to stdout
The output of this script was pretty minimal because the filter build path does not need to be known to run the test suite. This additional output is helpful for local development, as users will now see a message printed to stdout that looks something like this: > Success! Test filters are now available at: > > /home/michaelm/git/kong/kong/spec/fixtures/proxy_wasm_filters/build > > For local development, set KONG_WASM_FILTERS_PATH accordingly: > > export KONG_WASM_FILTERS_PATH="/home/michaelm/git/kong/kong/spec/fixtures/proxy_wasm_filters/build" > > If testing with docker, make sure to mount the full (non-symlink) path > inside your container: > > docker run \ > -e KONG_WASM_FILTERS_PATH=/filters \ > -v "$(realpath "/home/michaelm/git/kong/kong/spec/fixtures/proxy_wasm_filters/build"):/filters" \ > ...
- Loading branch information