“Jest Check Matriz of String” Código de respuesta

Jest Prueba Matriz de objetos

const users = [{id: 1, name: 'Hugo'}, {id: 2, name: 'Francesco'}];

test('we should have ids 1 and 2', () => {
  expect(users).toEqual(
    expect.arrayContaining([
      expect.objectContaining({id: 1}),
      expect.objectContaining({id: 2})
    ])
  );
});
CharllierJr

Jest Check Matriz of String

const fruits = ['apple', 'cat'];

test('should have array of string', () => {
  expect(fruits).toEqual(
    expect.arrayContaining([expect.any(String)])
  );
});
Obedient Oyster

Respuestas similares a “Jest Check Matriz of String”

Preguntas similares a “Jest Check Matriz of String”

Más respuestas relacionadas con “Jest Check Matriz of String” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código