Mimic user clicking first checkbox

PHOTO EMBED

Sat May 21 2022 08:52:18 GMT+0000 (Coordinated Universal Time)

Saved by @sadatakhtar #javascript

import { render, screen, cleanup } from '@testing-library/react';
import GroceryList from './components/GroceryList';
import userEvent from '@testing-library/user-event';
 
test('should mark the first checkbox as checked', () => {
  // render the grocery list
  render(<GroceryList />);
  // grab the apple item
  const appleItem = screen.getByLabelText('Apples');
  // simulate a "click" on the apple checkbox
  userEvent.click(appleItem);
  // assert that the apple checkbox was checked
  expect(appleItem).toBeChecked();
});
content_copyCOPY