File tree 2 files changed +25
-2
lines changed
2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -835,6 +835,10 @@ webidl.converters.RequestInfo = function (V) {
835
835
return webidl . converters . USVString ( V )
836
836
}
837
837
838
+ webidl . converters . AbortSignal = webidl . interfaceConverter (
839
+ AbortSignal
840
+ )
841
+
838
842
// https://fetch.spec.whatwg.org/#requestinit
839
843
webidl . converters . RequestInit = webidl . dictionaryConverter ( [
840
844
{
@@ -909,7 +913,12 @@ webidl.converters.RequestInit = webidl.dictionaryConverter([
909
913
} ,
910
914
{
911
915
key : 'signal' ,
912
- converter : webidl . converters . any
916
+ converter : webidl . nullableConverter (
917
+ ( signal ) => webidl . converters . AbortSignal (
918
+ signal ,
919
+ { strict : false }
920
+ )
921
+ )
913
922
} ,
914
923
{
915
924
key : 'window' ,
Original file line number Diff line number Diff line change 5
5
const { test } = require ( 'tap' )
6
6
const {
7
7
Request,
8
- Headers
8
+ Headers,
9
+ fetch
9
10
} = require ( '../../' )
10
11
const { kState } = require ( '../../lib/fetch/symbols.js' )
11
12
const hasSignalReason = ! ! ~ process . version . localeCompare ( 'v16.14.0' , undefined , { numeric : true } )
@@ -421,3 +422,16 @@ test('invalid RequestInit values', (t) => {
421
422
422
423
t . end ( )
423
424
} )
425
+
426
+ test ( 'RequestInit.signal option' , async ( t ) => {
427
+ t . throws ( ( ) => {
428
+ // eslint-disable-next-line no-new
429
+ new Request ( 'http://asd' , {
430
+ signal : true
431
+ } )
432
+ } , TypeError )
433
+
434
+ await t . rejects ( fetch ( 'http://asd' , {
435
+ signal : false
436
+ } ) , TypeError )
437
+ } )
You can’t perform that action at this time.
0 commit comments