{"ScriptPreparationCode":"const asyncBuilder = (t) =\u003E async () =\u003E setTimeout(() =\u003E t, t)\r\n\r\nconst a10s = asyncBuilder(100);","TestCases":[{"Name":"Promise all ","Code":"(async () =\u003E await Promise.all([a10s(), a10s()]))()","IsDeferred":false},{"Name":"Array ","Code":"(async () =\u003E [await a10s(), await a10s()])()","IsDeferred":false},{"Name":"Seq","Code":"(async () =\u003E { await a10s(); await a10s(); })()","IsDeferred":false}]}