This project is used as a playground for reproducing issues with WireMock. To get up and running:
- Start the WireMock server:
cd server
java -jar wiremock-standalone-3.0.0.jar --port 57247
- If you have Flutter installed, run the app:
cd
to the root of the workspaceflutter pub get
flutter run
- Start recording requests with the following payload:
{
"targetBaseUrl" : "https://jsonplaceholder.typicode.com",
"persist" : true,
"repeatsAsScenarios" : true
}
- If using the app, tap the deposit button
- If using
curl
, usecurl
to make aGET
request tohttp://localhost:57247/todos/1
- Stop recording requests