import sameValueZero from "../../utility/others/sameValueZero";
describe('sameValueZero tests()...', () => {
test('sameValueZero should compare the value that passed', () => {
const result = received.map((v) => {
return sameValueZero(v.a, v.b);
result.forEach((v, i) => {
expect(v).toBe(expected[i]);