(str)
| 26 | |
| 27 | // Allow an error message to retain its color when split across multiple lines. |
| 28 | var formatMessage = function(str) { |
| 29 | return String(str).split('\n').map(function(s) { return s.magenta; }).join('\n'); |
| 30 | }; |
| 31 | |
| 32 | // Keep track of failed assertions for pretty-printing. |
| 33 | var failedAssertions = []; |
no outgoing calls
no test coverage detected