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

134
Vistas
How can I test func with params that return a object?

I want to test a function that returns a object with given parameters. How can I test it ? Func.js

const functions = {
  createUserWithParams: (firstname, lastname) => ({
    firstname,
    lastname
  })
}

export default functions;

func-test.js

test('should be create a user with params', () => {
  expect(functions.createUserWithParams()).toStrictEqual({firstName: 'John', lastname: 'Travery'})
});

I know the test is wrong, How can I test it successfully ?

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

functions is an object. so you'll need to use key createUserWithParams to access the function definition in your test and don't forget to pass the parameters

test('should be create a user with params', () => {
  expect(functions['createUserWithParams']('John', 'Travery')).toStrictEqual({firstName: 'John', lastname: 'Travery'})
});

test('should be create a user with params', () => {
  expect(functions.createUserWithParams('John', 'Travery')).toStrictEqual({firstName: 'John', lastname: 'Travery'})
});

about 4 years ago · Juan Pablo Isaza 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