@putout/plugin-tape 21.13.0 → 21.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11,11 +11,13 @@ export const report = () => `Use 't.deepEqual()' when comparing Objects an Array
|
|
|
11
11
|
|
|
12
12
|
export const match = () => ({
|
|
13
13
|
't.equal(__a, __b)': check,
|
|
14
|
+
'equal(__a, __b)': check,
|
|
14
15
|
't.notEqual(__a, __b)': check,
|
|
15
16
|
});
|
|
16
17
|
|
|
17
18
|
export const replace = () => ({
|
|
18
19
|
't.equal(__a, __b)': 't.deepEqual(__a, __b)',
|
|
20
|
+
'equal(__a, __b)': 'deepEqual(__a, __b)',
|
|
19
21
|
't.notEqual(__a, __b)': 't.notDeepEqual(__a, __b)',
|
|
20
22
|
});
|
|
21
23
|
|
package/package.json
CHANGED