repos / starfx

supercharged async flow control library.
git clone https://github.com/neurosnap/starfx.git

commit
96afdb8
parent
8d91e2e
author
Eric Bower
date
2023-12-19 01:49:35 +0000 UTC
docs: readme
1 files changed,  +3, -3
M README.md
+3, -3
 1@@ -364,9 +364,9 @@ That's it. We are just leveraging the same tiny API that we are already using in
 2 
 3 # example: test that doesn't need an http interceptor
 4 
 5-Need to write tests? Users to libraries like `msw` or `nock`? Well you don't
 6-need them with `starfx`. If the `mdw.fetch()` middleware detects `ctx.response`
 7-is already filled then it skips making the request. Let's take the update user
 8+Need to write tests? Use libraries like `msw` or `nock`? Well you don't need
 9+them with `starfx`. If the `mdw.fetch()` middleware detects `ctx.response` is
10+already filled then it skips making the request. Let's take the update user
11 endpoint example and provide stubbed data for our tests.
12 
13 ```ts