{"ScriptPreparationCode":null,"TestCases":[{"Name":"xhr","Code":"const xhr = new XMLHttpRequest();\r\nxhr.open(\u0027GET\u0027, \u0027https://www.googleapis.com/discovery/v1/apis\u0027);\r\nxhr.onload = () =\u003E JSON.parse(xhr.responseText);\r\nxhr.send();","IsDeferred":false},{"Name":"fetch","Code":"fetch(\u0027https://www.googleapis.com/discovery/v1/apis\u0027)\r\n .then(response =\u003E response.json());","IsDeferred":false},{"Name":"axios","Code":"axios.get(\u0027https://www.googleapis.com/discovery/v1/apis\u0027)\r\n .then((response) =\u003E response.json());","IsDeferred":false}]}