(txt, status)
| 91 | }; |
| 92 | |
| 93 | var status_text = function (txt, status) { |
| 94 | if (status === 'pass') { |
| 95 | return pass_text(txt); |
| 96 | } else { |
| 97 | return fail_text(txt); |
| 98 | } |
| 99 | }; |
| 100 | |
| 101 | /** |
| 102 | * Slices an array, returns a string by joining the sliced elements. |
no test coverage detected
searching dependent graphs…