| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
… template This adds a comprehensive Reproduction section to CONTRIBUTING.md with: - Guidelines for creating good bug reproductions - Standalone server pattern using createServer + Client - Fetch-based reproduction examples - Pool/Agent reproduction examples - Checklist for bug reporters The bug report template is updated to prominently request a standalone reproduction script and include structured Environment fields.
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #5451 +/- ##
=======================================
Coverage 93.46% 93.47%
=======================================
Files 110 110
Lines 37106 37115 +9
=======================================
+ Hits 34682 34693 +11
+ Misses 2424 2422 -2 ☔ View full report in Codecov by Harness.
|
Sorry, something went wrong.
| const { tspl } = require('@matteo.collina/tspl') | ||
| t = tspl(t, { plan: 1 }) |
There was a problem hiding this comment.
Should we recommend t.plan instead of tspl?
| const { tspl } = require('@matteo.collina/tspl') | |
| t = tspl(t, { plan: 1 }) | |
| t.plan(1) |
Ditto in other occurrences.
Sorry, something went wrong.
| res.setHeader('content-length', 100) | ||
| res.end('hello'.repeat(20)) | ||
| }) | ||
| after(() => { server.closeAllConnections?.(); server.close() }) |
There was a problem hiding this comment.
This should use t.after instead of global import
| after(() => { server.closeAllConnections?.(); server.close() }) | |
| t.after(() => { server.closeAllConnections?.(); server.close() }) |
Ditto at other places
Sorry, something went wrong.
There was a problem hiding this comment.
lgtm with @trivikr suggestions
Sorry, something went wrong.
Signed-off-by: Matteo Collina <hello@matteocollina.com>
| Back | FazBrowse Home | New Git URL |
Summary
Adds a comprehensive Reproduction guide to CONTRIBUTING.md and updates the bug report template to request standalone reproduction scripts.
CONTRIBUTING.md changes
Bug report template changes
Related Issues
Closes #N/A — this is a process/documentation improvement