Browse Source

doc: clarify assert.fail doc

PR-URL: https://github.com/nodejs/node/pull/4186
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Roman Klauke <romaaan.git@gmail.com>
Reviewed-By: Minwoo Jung <jmwsoft@gmail.com>
process-exit-stdio-flushing
Rich Trott 9 years ago
parent
commit
70fb06a90b
  1. 5
      doc/api/assert.markdown

5
doc/api/assert.markdown

@ -62,8 +62,9 @@ Tests shallow, coercive equality with the equal comparison operator ( `==` ).
## assert.fail(actual, expected, message, operator) ## assert.fail(actual, expected, message, operator)
Throws an exception that displays the values for `actual` and `expected` Throws an `AssertionError`. If `message` is falsy, it displays the values for
separated by the provided operator. `actual` and `expected` separated by the provided `operator`. Otherwise, it
displays `message` (and does not use `actual`, `expected`, and `operator`).
## assert.ifError(value) ## assert.ifError(value)

Loading…
Cancel
Save