2 behaviors passing
This commit is contained in:
parent
8d25159d0c
commit
e2c9faa01e
@ -1,11 +1,17 @@
|
|||||||
import { useEffect } from "react";
|
import { useEffect } from "react";
|
||||||
|
|
||||||
export default function RestaurantList({ loadRestaurants })
|
export default function RestaurantList({ loadRestaurants, restaurants })
|
||||||
{
|
{
|
||||||
useEffect(() => { loadRestaurants(); }, [loadRestaurants]);
|
useEffect(() =>
|
||||||
return
|
{
|
||||||
(
|
loadRestaurants();
|
||||||
|
}, [loadRestaurants]);
|
||||||
<div>RestaurantList</div>
|
return (
|
||||||
)
|
<ul>
|
||||||
}
|
{restaurants.map(restaurant =>
|
||||||
|
(
|
||||||
|
<li key={restaurant.id}>{restaurant.name}</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
);
|
||||||
|
};
|
@ -1,4 +1,4 @@
|
|||||||
import { render } from '@testing-library/react';
|
import { render, screen } from '@testing-library/react';
|
||||||
import RestaurantList from './RestaurantList';
|
import RestaurantList from './RestaurantList';
|
||||||
|
|
||||||
describe('RestaurantList', () =>
|
describe('RestaurantList', () =>
|
||||||
@ -6,7 +6,20 @@ describe('RestaurantList', () =>
|
|||||||
it('loads restaurants on first render', () =>
|
it('loads restaurants on first render', () =>
|
||||||
{
|
{
|
||||||
const loadRestaurants = jest.fn().mockName('loadRestaurnats');
|
const loadRestaurants = jest.fn().mockName('loadRestaurnats');
|
||||||
render(<RestaurantList loadRestaurants={loadRestaurants} />);
|
const restaurants = [];
|
||||||
|
render(<RestaurantList loadRestaurants={loadRestaurants} restaurants={restaurants} />);
|
||||||
expect(loadRestaurants).toHaveBeenCalled();
|
expect(loadRestaurants).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
|
it('displays the restaurants', () =>
|
||||||
|
{
|
||||||
|
const noop = () => {}; //"no operation"
|
||||||
|
const restaurants =
|
||||||
|
[
|
||||||
|
{id: 1, name: 'Sushi Place'},
|
||||||
|
{id: 2, name: 'Pizza Place'}
|
||||||
|
];
|
||||||
|
render(<RestaurantList loadRestaurants={noop} restaurants={restaurants} />);
|
||||||
|
expect(screen.getByText('Sushi Place')).toBeInTheDocument();
|
||||||
|
expect(screen.getByText('Pizza Place')).toBeInTheDocument();
|
||||||
|
})
|
||||||
});
|
});
|
Loading…
Reference in New Issue
Block a user