We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81b81b9 commit b1ffef8Copy full SHA for b1ffef8
tests/arrays.js
@@ -28,13 +28,13 @@ test("nested array", () => {
28
test("object in array in object", () => {
29
assert.deepStrictEqual(
30
diff(
31
- { test: ["test", { test: true }] },
32
- { test: ["test", { test: false }] },
+ { test: ["test", { test2: true }] },
+ { test: ["test", { test2: false }] },
33
),
34
[
35
{
36
type: "CHANGE",
37
- path: ["test", 1, "test"],
+ path: ["test", 1, "test2"],
38
value: false,
39
oldValue: true,
40
},
0 commit comments