Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(uniqWith): Add test cases for uniqWith #36

Merged
merged 3 commits into from
Jun 13, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update src/array/uniqWith.spec.ts
  • Loading branch information
raon0211 committed Jun 13, 2024
commit 360e438b1f37dda5380992b71b8be9a6d5457458
1 change: 0 additions & 1 deletion src/array/uniqWith.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ describe('uniqWith', () => {
(a, b) => a.x === b.x
)
).toEqual([{ x: 1, y: 2 }]);
});
expect(uniqWith([1.2, 1.5, 2.1, 3.2, 5.7, 5.3, 7.19], (a, b) => Math.abs(a - b) < 1)).toEqual([
1.2, 3.2, 5.7, 7.19,
]);
Expand Down