“Scherzprüfarray von String -String” Code-Antworten

Scherz -Testarray von Objekten

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

Scherzprüfarray von String -String

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

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

Ähnliche Antworten wie “Scherzprüfarray von String -String”

Fragen ähnlich wie “Scherzprüfarray von String -String”

Weitere verwandte Antworten zu “Scherzprüfarray von String -String” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen