{"ScriptPreparationCode":null,"TestCases":[{"Name":"XHR","Code":"const xhr = new XMLHttpRequest();\r\nxhr.responseType = \u0027json\u0027;\r\nxhr.open(\u0027GET\u0027, \u0027https://www.googleapis.com/discovery/v1/apis\u0027);\r\nxhr.onload = () =\u003E console.log(xhr.response != null);\r\nxhr.send();","IsDeferred":false},{"Name":"Fetch","Code":"fetch(\u0022https://www.googleapis.com/discovery/v1/apis\u0022)\r\n .then(resp =\u003E resp.json())\r\n .then(data =\u003E console.log(data != null));","IsDeferred":false}]}