{"ScriptPreparationCode":"async function basicAsync() {\r\n const fetch1 = await fetch(www.google.com);\r\n const fetch2 = await fetch(www.google.it);\r\n const fetch3 = await fetch(www.google.de);\r\n};\r\n\r\nasync function promiseAllAsync() {\r\n const [fetch1, fetch2, fetch3] = await Promise.all([\r\n fetch(www.google.com),\r\n fetch(www.google.it),\r\n fetch(www.google.de)\r\n ]);\r\n};","TestCases":[{"Name":"Basic","Code":"basicAsync()","IsDeferred":false},{"Name":"Promise","Code":"promiseAllAsync()","IsDeferred":false}]}