You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-> curl -X GET http://localhost:9090/resolve/4KepjkTT
64
50
```
65
51
66
52
Now both these API calls were captured as a testcase and should be visible on the Keploy CLI. You should be seeing an app named keploy folder with the test cases we just captured and data mocks created.
Now that we have our testcase captured, run the test file.
73
59
74
60
```bash
75
-
sudo -E env PATH=$PATH oss test -c "./echo-mysql" --delay 20
61
+
keploy test -c "docker compose up app" --delay 20
76
62
```
77
63
78
-
So no need to setup dependencies like MySQL, web-go locally or write mocks for your testing.
64
+
So no need to setup dependencies like MySQL, web-go locally or write mocks for your testing.`keploy test ` runs the test cases captured in the previous step. It replays the captured API calls against the application to verify its behavior.
79
65
80
-
oss test runs the test cases captured in the previous step. It replays the captured API calls against the application to verify its behavior.
0 commit comments