Files
twenty/front/src/tests/pages/inbox/Inbox.test.tsx
T
2022-12-05 21:47:17 +01:00

11 lines
324 B
TypeScript

import { render } from '@testing-library/react';
import { InboxDefault } from '../../../stories/pages/inbox/Inbox.stories';
it('Checks the Inbox page render', () => {
const { getAllByRole } = render(<InboxDefault />);
const button = getAllByRole('button');
expect(button[0]).toHaveTextContent('Sylvie Vartan');
});