-
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.
## Config Migration Needed
- […
-
I've been search for flakes in my test for weeks and I think the solution is around supertest's usage of ephemeral ports (binding to port 0).
Full writeup at at https://stackoverflow.com/questions…
-
When I define:
controllers: [controllersPath + "/*.js"],
when running chai http requests or supertest, the binding of the routes do not occur when using useExpressServer or createExpressServer w…
-
A test failed on a tracked branch
```
Error: expected 200 "OK", got 404 "Not Found"
at Context.apply (overview.ts:36:10)
at Object.apply (wrap_function.js:73:30)
----
at Test._assertStatu…
-
[Edit by eernstg: This issue has evolved over time; it is now used to report that diagnostics emitted for run-time failures associated with caller-side checks are uninformative.]
Sorry for the non-…
-
Supertest creates and tears down an HTTP request listener per-test, so it's not uncommon to see something like:
```
(node) warning: possible EventEmitter memory leak detected. 11 connection listeners…
STRML updated
2 years ago
-
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.
## Config Migration Needed
- […
-
A test failed on a tracked branch
```
Error: expected 200 "OK", got 500 "Internal Server Error"
at ReadStream. (packages.ts:46:12)
at ReadStream.emit (node:events:519:28)
at endReadableNT…
-
Consider this example,
```ts
const agent = supertest.agent(expressApp);
const response = await agent.post("/graphql").send({
key: "value"
});
```
The type of `response.body` is `any`.
Id…
-
I have an almost identical test case to https://github.com/visionmedia/supertest/issues/566 , except in my test I'm iterating over the `await request().get().expect()` 1000 times, to test the performa…