diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-14 19:42:51 +0200 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-14 19:42:51 +0200 | 
| commit | 70b4e5c311999501cd6eff632ddbcac6e75ff035 (patch) | |
| tree | f9de55c3d1aa6565a164cf451c73d9fa5c0f7b87 /src/components/organisms/forms/search-form.test.tsx | |
| parent | 1d162d7aafb3cfe2c3351b5fd891bbf6d476e9b2 (diff) | |
chore: add a SearchForm component
Diffstat (limited to 'src/components/organisms/forms/search-form.test.tsx')
| -rw-r--r-- | src/components/organisms/forms/search-form.test.tsx | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/src/components/organisms/forms/search-form.test.tsx b/src/components/organisms/forms/search-form.test.tsx new file mode 100644 index 0000000..4e3d285 --- /dev/null +++ b/src/components/organisms/forms/search-form.test.tsx @@ -0,0 +1,16 @@ +import { render, screen } from '@test-utils'; +import SearchForm from './search-form'; + +describe('SearchForm', () => { +  it('renders a search input', () => { +    render(<SearchForm />); +    expect( +      screen.getByRole('searchbox', { name: 'Search for:' }) +    ).toBeInTheDocument(); +  }); + +  it('renders a submit button', () => { +    render(<SearchForm />); +    expect(screen.getByRole('button', { name: 'Search' })).toBeInTheDocument(); +  }); +}); | 
