{"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":"Filter","Code":"const stream = new rxjs.Subject();\r\nstream.pipe(\r\n\trxjs.operators.filter(v =\u003E v)\r\n).subscribe(v =\u003E {\r\n\t\r\n \tconsole.log(v);\r\n \r\n});\r\n\r\nstream.next(true);\r\nstream.next(false);\r\nstream.next(true);\t\t\t\t","IsDeferred":false},{"Name":"If","Code":"const stream = new rxjs.Subject();\r\nstream.subscribe(v =\u003E {\r\n\tif(v) {\r\n \tconsole.log(v);\r\n }\r\n});\r\n\r\nstream.next(true);\r\nstream.next(false);\r\nstream.next(true);","IsDeferred":false}]}