-
Notifications
You must be signed in to change notification settings - Fork 62
feat: v8 #599
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
feat: v8 #599
Changes from 5 commits
2785a42
8a4f452
74d9b7c
0592ad9
4ed1770
45f086b
035d865
35a84c6
f174105
f348708
1cfdf79
b4f0bcd
4a80c29
54c25e6
98259f7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -561,7 +561,8 @@ x//0u+zd/R/QRUzLOw4N72/Hu+UG6MNt5iDZFCtapRaKt6OvSBwy8w== | |
); | ||
}); | ||
|
||
it("options.request.signal is passed as option to fetch", function () { | ||
//TODO: figure out the expected behavior | ||
it.skip("options.request.signal is passed as option to fetch", function () { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Linking docs for the This test seems like a sanity check to make sure the option is passed along by passing a value that isn't the expected type and checking if it throws an error Example:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In that case, with these breaking changes, should this test be removed? If we're expecting the caller to bring their own fetch, perhaps we shouldn't test on the internals of those options. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems that this is the only test that checks if the options were properly passed along. I think it should be fine to remove it |
||
return request("/", { | ||
request: { | ||
// We pass a value that is not an `AbortSignal`, and expect `fetch` to | ||
|
Uh oh!
There was an error while loading. Please reload this page.