(output)
| 78 | } |
| 79 | |
| 80 | function countBootstrapParts(output) { |
| 81 | return output.messages[0].parts.filter( |
| 82 | (part) => part.type === 'text' && part.text.includes('EXTREMELY_IMPORTANT') |
| 83 | ).length; |
| 84 | } |
| 85 | |
| 86 | function assertPresentBootstrap(result) { |
| 87 | const failures = []; |
no outgoing calls
no test coverage detected