(title, count, subtitle = '', description = '')
| 315 | } |
| 316 | |
| 317 | function setSectionHeader(title, count, subtitle = '', description = '') { |
| 318 | if (activeSectionTitle) activeSectionTitle.textContent = title; |
| 319 | if (activeSectionMeta) { |
| 320 | activeSectionMeta.textContent = subtitle || `(${count})`; |
| 321 | } |
| 322 | if (activeSectionDesc) { |
| 323 | activeSectionDesc.textContent = description; |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | function setResultStatus(message = '', show = false) { |
| 328 | if (!resultStatus) return; |
no outgoing calls
no test coverage detected