File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -210,7 +210,6 @@ describe('A server setup', (): void => {
210210 headers : { authorization : `WebID ${ encodeURIComponent ( owner ) } ` , 'content-type' : 'text/turtle' } ,
211211 body : policy ,
212212 } ) ;
213- console . log ( await policyResponse . text ( ) ) ;
214213 expect ( policyResponse . status ) . toBe ( 201 ) ;
215214
216215 const putResponse = await fetch ( collectionResource , {
@@ -247,15 +246,13 @@ describe('A server setup', (): void => {
247246 headers : { authorization : `WebID ${ encodeURIComponent ( owner ) } ` , 'content-type' : 'text/turtle' } ,
248247 body : policy ,
249248 } ) ;
250- console . log ( await policyResponse . text ( ) ) ;
251249 expect ( policyResponse . status ) . toBe ( 201 ) ;
252250
253251 const putResponse = await fetch ( collectionResource , {
254252 method : 'PUT' ,
255253 headers : { 'content-type' : 'text/plain' } ,
256254 body : 'Some new text!' ,
257255 } ) ;
258- console . log ( await putResponse . text ( ) ) ;
259256 expect ( putResponse . status ) . toBe ( 205 ) ;
260257
261258 const getResponse = await fetch ( collectionResource ) ;
You can’t perform that action at this time.
0 commit comments