(node)
| 228 | } |
| 229 | |
| 230 | function getHeadingText(node) { |
| 231 | return node.children |
| 232 | .map(child => child.value || '') |
| 233 | .join('') |
| 234 | .trim(); |
| 235 | } |
| 236 | |
| 237 | function extractTestInstructions(contents) { |
| 238 | if (!contents) { |
no outgoing calls
no test coverage detected