@@ -125,21 +125,38 @@ Aliases: `t.notEquals()`, `t.notStrictEqual()`, `t.notStrictEquals()`,
125
125
126
126
Assert that ` a ` and ` b ` have the same structure and nested values using
127
127
[ node's deepEqual() algorithm] ( https://github.com/substack/node-deep-equal )
128
- with an optional description ` msg ` .
128
+ with strict comparisons (` === ` ) on leaf nodes and an optional description
129
+ ` msg ` .
129
130
130
- Aliases: ` t.deepEquals() ` , ` t.isEquivalent() ` , ` t.looseEqual() ` ,
131
- ` t.looseEquals() ` , ` t.same() `
131
+ Aliases: ` t.deepEquals() ` , ` t.isEquivalent() ` , ` t.same() `
132
132
133
133
## t.notDeepEqual(a, b, msg)
134
134
135
135
Assert that ` a ` and ` b ` do not have the same structure and nested values using
136
136
[ node's deepEqual() algorithm] ( https://github.com/substack/node-deep-equal )
137
- with an optional description ` msg ` .
137
+ with strict comparisons (` === ` ) on leaf nodes and an optional description
138
+ ` msg ` .
138
139
139
140
Aliases: ` t.notEquivalent() ` , ` t.notDeeply() ` , ` t.notSame() ` ,
140
141
` t.isNotDeepEqual() ` , ` t.isNotDeeply() ` , ` t.isNotEquivalent() ` ,
141
142
` t.isInequivalent() `
142
143
144
+ ## t.deepLooseEqual(a, b, msg)
145
+
146
+ Assert that ` a ` and ` b ` have the same structure and nested values using
147
+ [ node's deepEqual() algorithm] ( https://github.com/substack/node-deep-equal )
148
+ with loose comparisons (` == ` ) on leaf nodes and an optional description ` msg ` .
149
+
150
+ Aliases: ` t.looseEqual() ` , ` t.looseEquals() `
151
+
152
+ ## t.notDeepLooseEqual(a, b, msg)
153
+
154
+ Assert that ` a ` and ` b ` do not have the same structure and nested values using
155
+ [ node's deepEqual() algorithm] ( https://github.com/substack/node-deep-equal )
156
+ with loose comparisons (` == ` ) on leaf nodes and an optional description ` msg ` .
157
+
158
+ Aliases: ` t.notLooseEqual() ` , ` t.notLooseEquals() `
159
+
143
160
## t.throws(fn, expected, msg)
144
161
145
162
Assert that the function call ` fn() ` throws an exception.
0 commit comments