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
* Support reset_peer toxic
Besides adding the new toxic, this commit removes a number of
deprecated libraries and tools from the project.
The `requests` library was replaced by `axios` which is actively maintained.
The development tools used in this project were also outdated.
`tslint` was replaced by `eslint` and `ava` was replaced by `jest`.
The `tslint` migration as well as the `ava` migration were conducted
mostly automatic with only a few manual modifications.
* Support limit_data toxic and add documentation for public API
Additional examples can be found in the `examples` directory for expected usage.
86
+
87
+
## Docker setup for development and testing
88
+
89
+
A Toxiproxy instance is needed to run the tests. The easiest way to get one is to use the official Docker image which will make it available on port 8474. The URL (http://localhost:8474) is hard-coded in the tests.
90
+
```
91
+
docker run --rm -p 8474:8474 ghcr.io/shopify/toxiproxy:latest
0 commit comments