Gets the prettified text part of the output generated by the node.js scripts
(output)
| 35 | |
| 36 | |
| 37 | def get_prettified_code(output): |
| 38 | """Gets the prettified text part of the output generated by the node.js scripts""" |
| 39 | start = PRETTIFIED_CODE_MARKER_BEGIN |
| 40 | end = PRETTIFIED_CODE_MARKER_END |
| 41 | return get_output_between(output, start, end) |
| 42 | |
| 43 | |
| 44 | def get_diagnostics_parse_fail(output): |
no test coverage detected