Here:
|
@Header('content-type', 'text/html') |
you are trying to set the header
Content-Type to
text/html
But in benchmark you are expecting it to be text/plain, I think that is the cause why you cannot run tests on Nest.js
|
if (!index.headers.get('Content-Type')?.includes('text/plain')) |
You put nestjs into black list with the reason:
|
// Not setting content-type header for some reason |
|
'node/nest/index', |
Is this supposed to be like this?
Here:
bun-http-framework-benchmark/dev/nest-node/src/app.controller.ts
Line 18 in 5b35aa6
you are trying to set the header
Content-Typetotext/htmlBut in benchmark you are expecting it to be
text/plain, I think that is the cause why you cannot run tests on Nest.jsbun-http-framework-benchmark/bench.ts
Line 100 in 5b35aa6
You put nestjs into black list with the reason:
bun-http-framework-benchmark/bench.ts
Lines 19 to 20 in 5b35aa6
Is this supposed to be like this?