{"ScriptPreparationCode":"/*your preparation JavaScript code goes here\r\nTo execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/\r\nvar testStringSplit = \u0022 \u0026.fieldName\u0022;\r\nvar splitReg = /\u0026./;\r\nasync function globalMeasureThatScriptPrepareFunction() {\r\n // This function is optional, feel free to remove it.\r\n // await someThing();\r\n}","TestCases":[{"Name":"String Split","Code":"var [stringOne, stringTwo] = testStringSplit.split(\u0022\\n\u0022);\r\n/*When writing async/deferred tests, use \u0060deferred.resolve()\u0060 to mark test as done*/","IsDeferred":false},{"Name":"Regex split","Code":"var [stringOne, stringTwo] = testStringSplit.split(splitReg);","IsDeferred":false}]}