Gets the diagnostics part of the output generated by the node.js scripts
(output)
| 28 | |
| 29 | |
| 30 | def get_diagnostics(output): |
| 31 | """Gets the diagnostics part of the output generated by the node.js scripts""" |
| 32 | start = DIAGNOSTICS_MARKER_BEGIN |
| 33 | end = DIAGNOSTICS_MARKER_END |
| 34 | return get_output_between(output, start, end) |
| 35 | |
| 36 | |
| 37 | def get_prettified_code(output): |
no test coverage detected