File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,6 @@ describe('wrappedNodeFetch', () => {
1919 method : 'GET' ,
2020 } ;
2121 const response = await wrappedFetch ( url , options ) ;
22- console . log ( response , "RESPONSE" )
23-
2422 expect ( mockFetch ) . toHaveBeenCalledWith ( url , options ) ;
2523 expect ( response ) . toBeInstanceOf ( Response ) ;
2624 } ) ;
@@ -69,7 +67,6 @@ describe('wrappedNodeFetch', () => {
6967 method : 'GET' ,
7068 } ;
7169 const response = await wrappedFetch ( url , options ) ;
72- console . log ( response , "RESPONSE" )
7370 expect ( response ) . toEqual ( mockResponse ) ;
7471 } ) ;
7572
@@ -104,7 +101,6 @@ describe('wrappedNodeFetch', () => {
104101 method : 'GET' ,
105102 } ;
106103 const response = await wrappedFetch ( url , options ) ;
107- console . log ( response , "RESPONSE" )
108104
109105 expect ( mockFetch ) . toHaveBeenCalledWith ( url , options ) ;
110106 expect ( response ) . toBeInstanceOf ( Response ) ;
You can’t perform that action at this time.
0 commit comments