-
-
Notifications
You must be signed in to change notification settings - Fork 116
Migrate from tap to Node Test Runner #573
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
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
5e534f9
test: migrate from tap to node "multipart-ajv-file.test.js"
matteo-gobbo 444aaaf
test: migrate from tap to node multipart-attach-body.test.js
matteo-gobbo f154c29
test: migrate from tap to node multipart-big-stream.test.js
matteo-gobbo 3ee0710
test: migrate from tap to node multipart-body-schema.js
matteo-gobbo 9de0cc0
test: migrate from tap to node multipart-concat.test.js
matteo-gobbo 631c942
test: migrate from tap to node multipart-disk.test.js
matteo-gobbo 53267d9
test: migrate from tap to node multipart-duplicate-save-request-file.…
matteo-gobbo a24dcd1
test: migrate from tap to node multipart-empty-body.test.js
matteo-gobbo 8760045
test: migrate from tap to node multipart-fileLimit.test.js
matteo-gobbo 9168d50
test: migrate from tap to node multipart-http2.test.js
matteo-gobbo d2d702e
fix
matteo-gobbo d4fbc35
test: migrate from tap to node multipart-incomplete-upload.test.js
matteo-gobbo cd66f7a
test: migrate from tap to node multipart-json.test.js
matteo-gobbo f9694b3
test: migrate from tap to node multipart-security.test.js
matteo-gobbo 7049313
test: migrate from tap to node multipart-small-stream.test.js
matteo-gobbo 5f165c2
test: migrate from tap to node multipart-update-options-types.test.js
matteo-gobbo 128aa55
test: migrate from tap to node multipart.test.js
matteo-gobbo c181b2b
test: migrate from tap to node stream-consumer.test.js
matteo-gobbo c6b1238
test: migrate from tap to node fix-313.test.js
matteo-gobbo d34c2c8
test: migrate from tap to node generate-id.test.js
matteo-gobbo 49f1fa0
test: migrate from tap to node big.test.js
matteo-gobbo a9ced93
chore: remove tap
matteo-gobbo 4429642
chore: add c8 for coverage
matteo-gobbo 5be684f
chore: remove -taprc
matteo-gobbo 72ba484
fix: update temporary directory path in multipart-disk.test.js
matteo-gobbo c326ea4
refactor: replace deepEqual with deepStrictEqual
matteo-gobbo 3ad90af
fix: use ifError for error assertion
matteo-gobbo adcd75e
fix: standardize assertions using fail
matteo-gobbo 3c40164
fix: remove second argument to ifError
matteo-gobbo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The response handling has been changed to call
done()inside thefastify.close()callback, but this creates a race condition. If the pump operation fails,done()will never be called, causing the test to hang.