Created
July 15, 2015 10:01
-
-
Save alexanderjamesking/c6e16d7b49021038f59e to your computer and use it in GitHub Desktop.
Useful Wiremock Calls
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Useful Wiremock Calls | |
# View all stubbed enpoints (GET) | |
http://localhost:11111/__admin/ | |
# View all requests to WM (POST) | |
http://localhost:11111/__admin/requests/find | |
body: | |
{ | |
"method": "ANY", | |
"urlPattern": "/.*" | |
} | |
# View only KS requests (POST) | |
http://localhost:11111/__admin/requests/find | |
body: | |
{ | |
"method": "ANY", | |
"urlPattern": "/keystore.*" | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment