We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 963f1b3 commit 1305e8fCopy full SHA for 1305e8f
src/update.test.ts
@@ -81,7 +81,7 @@ it("handles duplicates", async () => {
81
expect(
82
Object.fromEntries(
83
Object.entries(groups)
84
- .filter(([id, g]) => id !== "undefined" && g.length > 1)
+ .filter(([id, g]) => id !== "undefined" && id !== "null" && g.length > 1)
85
.map(([id, g]) => [id, g.length]),
86
),
87
).toStrictEqual({})
0 commit comments