From c827ac994f147a2b3df1f51a42316bda96cedb65 Mon Sep 17 00:00:00 2001 From: Nikita Skovoroda Date: Mon, 8 Jul 2024 16:05:20 +0300 Subject: [PATCH] [readme] notLooseEqual(s) is not an alias for notDeepLooseEqual --- readme.markdown | 2 -- 1 file changed, 2 deletions(-) diff --git a/readme.markdown b/readme.markdown index bea7dba6..f37aa7e5 100644 --- a/readme.markdown +++ b/readme.markdown @@ -321,8 +321,6 @@ Assert that `actual` and `expected` have the same structure and nested values us Assert that `actual` and `expected` do not have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/inspect-js/node-deep-equal) with loose comparisons (`==`) on leaf nodes and an optional description of the assertion `msg`. -Aliases: `t.notLooseEqual()`, `t.notLooseEquals()` - ## t.throws(fn, expected, msg) Assert that the function call `fn()` throws an exception. `expected`, if present, must be a `RegExp`, `Function`, or `Object`. The `RegExp` matches the string representation of the exception, as generated by `err.toString()`. For example, if you set `expected` to `/user/`, the test will pass only if the string representation of the exception contains the word `user`. Any other exception will result in a failed test. The `Function` could be the constructor for the Error type thrown, or a predicate function to be called with that exception. `Object` in this case corresponds to a so-called validation object, in which each property is tested for strict deep equality. As an example, see the following two tests--each passes a validation object to `t.throws()` as the second parameter. The first test will pass, because all property values in the actual error object are deeply strictly equal to the property values in the validation object.