@putout/plugin-tape 21.14.0 → 21.15.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.
|
@@ -58,6 +58,10 @@ export const replace = () => ({
|
|
|
58
58
|
const expected = __array;
|
|
59
59
|
deepEqual(__a, expected);
|
|
60
60
|
}`,
|
|
61
|
+
'deepEqual(__a, __object)': `{
|
|
62
|
+
const expected = __object;
|
|
63
|
+
deepEqual(__a, expected);
|
|
64
|
+
}`,
|
|
61
65
|
't.__a(__b, __c)': ({__b, __c}, path) => {
|
|
62
66
|
const resultBinding = getBinding(path, 'result');
|
|
63
67
|
const expectedBinding = getBinding(path, 'expected');
|
package/package.json
CHANGED