Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

136
Vistas
Jest failing one function but not another

I am writing some daily challenges for my coding bootcamp and I am running into an issue on one problem. I wrote a function that combines objects and it works correctly. Here is what the problem prompt is

Prompt: Write a function named mergeObjects that accepts at least two objects as arguments, merges the properties of the second through n objects into the first object, then finally returns the first object. If any objects have the same property key, values from the object(s) later in the arguments list should overwrite earlier values.

Examples:

mergeObjects({}, {a: 1});  //=> {a: 1} (same object as first arg)
mergeObjects({a: 1, b: 2, c: 3}, {d: 4});  //=> {a: 1, b: 2, c: 3, d: 4}
mergeObjects({a: 1, b: 2, c: 3}, {d: 4}, {b: 22, d: 44});  //=> {a: 1, b: 22, c: 3, d: 44

My function

 function mergeObjects(...obj) {
  let obj1 = {}
  obj.forEach(element => {
    obj1 = {...obj1, ...element}
  });
  return obj1
}

Solution function

function mergeObjects1(target, ...objects) {
  objects.forEach(function (obj) {
    // using ES2015's 'for in' loop
    for (var key in obj) {
      target[key] = obj[key]
    }
  })
  return target
}

In my eyes these two functions provide the same result. However, when I run my code through the jest test they created it fails on the first test. But the solution they provide, does not fail. The jest test is below.

describe('15-mergeObjects', function () {
    it('returns same object', function () {
      var obj = {}
      expect(mergeObjects(obj, { a: 1 })).toBe(obj)
    })
    it('adds additional properties', function () {
      expect(mergeObjects({ a: 1, b: 2, c: 3 }, { d: 4 })).toEqual({
        a: 1,
        b: 2,
        c: 3,
        d: 4
      })
    })
    it('merges props from left to right', function () {
      expect(
        mergeObjects({ a: 1, b: 2, c: 3 }, { d: 4 }, { b: 22, d: 44 })
      ).toEqual({ a: 1, b: 22, c: 3, d: 44 })
    })
  })

  describe('15-mergeObjects', function () {
    it('returns same object', function () {
      var obj = {}
      expect(mergeObjects1(obj, { a: 1 })).toBe(obj)
    })
    it('adds additional properties', function () {
      expect(mergeObjects1({ a: 1, b: 2, c: 3 }, { d: 4 })).toEqual({
        a: 1,
        b: 2,
        c: 3,
        d: 4
      })
    })
    it('merges props from left to right', function () {
      expect(
        mergeObjects1({ a: 1, b: 2, c: 3 }, { d: 4 }, { b: 22, d: 44 })
      ).toEqual({ a: 1, b: 22, c: 3, d: 44 })
    })
  })

Can anyone provide an explanation as to why the solution function passes while my function does not?

about 4 years ago · Santiago Gelvez
1 Respuestas
Responde la pregunta

0

While the results look the same, the two functions are slightly different.

In your function, you are creating a new object and then adding to it all of the required properties.

In the solution function, they are adding properties to the original target object and then returning it.

The returned objects from both functions will have the same keys and the same values, but different references, so they are not considered the same object in JavaScript.

In the test

 expect(mergeObjects1(obj, { a: 1 })).toBe(obj)

.toBe() checks whether two objects are the same (identity), therefore it fails the case of your function.

Note that there is a different test, .toEqual(), which checks whether two objects have the same keys and the same values (but possibly different references). Your function would pass this test

 expect(mergeObjects1(obj, { a: 1 })).toEqual(obj)
about 4 years ago · Santiago Gelvez Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda