{"ScriptPreparationCode":"/*your preparation JavaScript code goes here\r\nTo execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/\r\nasync function globalMeasureThatScriptPrepareFunction() {\r\n // This function is optional, feel free to remove it.\r\n // await someThing();\r\n}","TestCases":[{"Name":"with new date","Code":"var dateGoodFormat = new Date(\u00222030-09-19T00:00:00\u0022);\r\nvar v = new Date(dateGoodFormat.getFullYear(), dateGoodFormat.getMonth(), dateGoodFormat.getDate() - 1);\r\nconsole.log(v);","IsDeferred":false},{"Name":"without new date","Code":"var dateGoodFormat = new Date(\u00222030-09-19T00:00:00\u0022);\r\ndateGoodFormat.setDate(dateGoodFormat.getDate() -1);\r\nvar v = dateGoodFormat;\r\nconsole.log(v);","IsDeferred":false}]}