{"ScriptPreparationCode":null,"TestCases":[{"Name":"axios","Code":"const url = \u0022https://jsonplaceholder.typicode.com/todos\u0022;\r\n\r\naxios.get(url)\r\n.then((response) =\u003E console.log(response.data));","IsDeferred":false},{"Name":"fetch","Code":"const url = \u0022https://jsonplaceholder.typicode.com/todos\u0022;\r\n\r\nfetch(url)\r\n .then((response) =\u003E response.json())\r\n .then((data) =\u003E console.log(data));","IsDeferred":false}]}