{"ScriptPreparationCode":"const regex = /TF_LOG|(?:Creating|Modifying|Destroying)\\.\\.\\./;\r\nconst string = \u0022module.helm_agent.helm_release.agent: Still modifying... [id=agent-bors, 10s elapsed]\u0022;","TestCases":[{"Name":"match","Code":"function isRelevantLogEntryStrMatch(logEntry) {\r\n return (\r\n logEntry.match(\u0027TF_LOG\u0027) ||\r\n logEntry.match(\u0027Creating...\u0027) ||\r\n logEntry.match(\u0027Modifying...\u0027) ||\r\n logEntry.match(\u0027Destroying...\u0027)\r\n );\r\n}\r\n\r\n\r\nisRelevantLogEntryStrMatch(string);","IsDeferred":false},{"Name":"includes","Code":"function isRelevantLogEntryIncludes(logEntry) {\r\n return (\r\n logEntry.includes(\u0027TF_LOG\u0027) ||\r\n logEntry.includes(\u0027Creating...\u0027) ||\r\n logEntry.includes(\u0027Modifying...\u0027) ||\r\n logEntry.includes(\u0027Destroying...\u0027)\r\n );\r\n}\r\n\r\nisRelevantLogEntryIncludes(string);","IsDeferred":false},{"Name":"regex","Code":"function isRelevantLogEntryRegex(logEntry) {\r\n return regex.test(logEntry);\r\n}\r\n\r\n\r\nisRelevantLogEntryRegex(string);","IsDeferred":false}]}