Skip to content

test: fix fastify TAV test failures #3314

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .tav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,9 @@ restify-v10-v12:
# - #1086 suggests [email protected] was a broken release, skip it.
# - [email protected] is broken: https://github.com/fastify/fastify/issues/3998#issuecomment-1153662513
# - [email protected] - 4.16.2 (inclusive) are broken releases
# - Do not run "test/sanitize-field-names/fastify.test.js" for older fastify,
# because the test file uses '@fastify/formbody', which only has versions
# for fastify >=3.
fastify-v1:
name: fastify
versions: '1.x'
Expand All @@ -476,7 +479,6 @@ fastify-v1:
- node test/instrumentation/modules/fastify/fastify.test.js
- node test/instrumentation/modules/fastify/async-await.test.js
- node test/instrumentation/modules/fastify/set-framework.test.js
- node test/sanitize-field-names/fastify.test.js
fastify-v2:
name: fastify
versions: '>=2.0.0 <2.4.0 || >2.4.0 <3'
Expand All @@ -485,10 +487,10 @@ fastify-v2:
- node test/instrumentation/modules/fastify/fastify.test.js
- node test/instrumentation/modules/fastify/async-await.test.js
- node test/instrumentation/modules/fastify/set-framework.test.js
- node test/sanitize-field-names/fastify.test.js
fastify-v3:
name: fastify
versions: '>=3.0.0 <4'
peerDependencies: '@fastify/formbody@^6.0.1'
node: '>=10'
commands:
- node test/instrumentation/modules/fastify/fastify.test.js
Expand All @@ -498,6 +500,7 @@ fastify-v3:
fastify:
name: fastify
versions: '>=4 <4.0.1 || >4.0.1 <4.16.0 || >4.16.2'
peerDependencies: '@fastify/formbody@^7'
node: '>=14.6.0'
commands:
- node test/instrumentation/modules/fastify/fastify.test.js
Expand Down