(opts)
| 14 | AssertionError.prototype = new noop(); |
| 15 | |
| 16 | function fail(opts) { |
| 17 | if (typeof opts === 'string') opts = { message: opts }; |
| 18 | |
| 19 | throw new AssertionError(opts); |
| 20 | } |
| 21 | |
| 22 | return { |
| 23 | ok: function(thing, message) { |
no outgoing calls
no test coverage detected