Files
twenty/front/src/tests/pages/tasks/Tasks.test.tsx
T
2022-12-05 00:49:45 +01:00

11 lines
324 B
TypeScript

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