Menu Close

Getbydisplayvalue React Testing Library Page

// Assert updated display value expect(screen.getByDisplayValue('Bob')).toBeInTheDocument(); );

const nameInput = screen.getByLabelText(/name/i); getbydisplayvalue react testing library

// Edit the value await userEvent.clear(nameInput); await userEvent.type(nameInput, 'Bob'); // Assert updated display value expect(screen