{"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":"Split","Code":"/*When writing async/deferred tests, use \u0060deferred.resolve()\u0060 to mark test as done*/\r\nconst hasSubdomain = (hostname) =\u003E {\r\n return hostname.split(\u0027.\u0027).length \u003E 2;\r\n};\r\n\r\nhasSubdomain(\u0027pixel.barion.com\u0027);","IsDeferred":false},{"Name":"RegExp","Code":"const hasSubdomain = (hostname) =\u003E {\r\n return /^[^.]\u002B\\.[^.]\u002B\\./.test(hostname);\r\n};\r\n\r\nhasSubdomain(\u0027pixel.barion.com\u0027);","IsDeferred":false}]}