Skip to content

Commit

Permalink
Merge branch 'next'
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Collina <[email protected]>
  • Loading branch information
mcollina committed May 6, 2024
2 parents 81cb3ea + 9179d79 commit 39f4e91
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
contents: read
strategy:
matrix:
node-version: [18, 20, 21]
node-version: [18, 20, 22]
steps:
- name: Check out repo
uses: actions/checkout@v4
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ coverage
# nyc test coverage
.nyc_output

# tap test coverage and results
.tap

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

Expand Down Expand Up @@ -146,4 +149,4 @@ yarn.lock

# 0x
.__browserify*
profile-*
profile-*
1 change: 1 addition & 0 deletions .taprc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
allow-incomplete-coverage: true
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"process-warning": "^3.0.0"
},
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@types/node": "^20.1.0",
"autocannon": "^7.3.0",
"coveralls": "^3.0.0",
Expand All @@ -20,7 +21,7 @@
"pre-commit": "^1.1.2",
"split2": "^4.0.0",
"standard": "^17.0.0",
"tap": "^16.0.0",
"tap": "^18.7.2",
"ts-node": "^10.3.0",
"tsd": "^0.31.0",
"typescript": "^5.0.2"
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ test('log requests aborted during payload', { skip: true }, function (t) {
t.error(err)

const client = net.connect(server.address().port, server.address().address, () => {
client.write('GET /delayed HTTP/1.1\r\n\r\n')
client.write('GET /delayed HTTP/1.1\r\nHost: localhost\r\n\r\n')
})

client.on('data', (data) => {
Expand Down

0 comments on commit 39f4e91

Please sign in to comment.