button.spec.tsx 316 B

123456789
  1. import React from 'react';
  2. import { render } from '@testing-library/react';
  3. import { BasicButton } from './button.composition';
  4. it('should render with the correct text', () => {
  5. const { getByText } = render(<BasicButton />);
  6. const rendered = getByText('hello from Button');
  7. expect(rendered).toBeTruthy();
  8. });