Skip to content

Instantly share code, notes, and snippets.

@mariocsantos
Created December 23, 2020 14:26
Show Gist options
  • Save mariocsantos/5103e89225f88a193e73ad6ba44ceb3f to your computer and use it in GitHub Desktop.
Save mariocsantos/5103e89225f88a193e73ad6ba44ceb3f to your computer and use it in GitHub Desktop.
Debugging favorites food
import React from 'react';
import { render, screen } from '@testing-library/react';
import { FavoriteFoodList } from '../FavoriteFoodList';
describe('FavoriteFoodList', () => {
it('should render my favorites food', () => {
render(<FavoriteFoodList />);
screen.debug();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment