Skip to content

Commit

Permalink
snaps
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-odonovan committed Jan 30, 2025
1 parent 7bb222d commit 925f753
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/components/Atoms/Input/input.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ it('renders correctly', () => {
<div
className="c3"
>
<input
aria-describedby="Accessibility info go here"
className="c4"
Expand All @@ -105,7 +105,7 @@ it('renders correctly', () => {
type="text"
/>
</div>
</label>
`);
});
2 changes: 1 addition & 1 deletion src/components/Atoms/TextArea/TextArea.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ it('renders correctly', () => {
placeholder="This is text area"
rows={5}
/>
</label>
`);
});
6 changes: 3 additions & 3 deletions src/components/Molecules/SearchInput/SearchInput.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import SearchInput from './SearchInput';
it('renders correctly', () => {
const tree = renderWithTheme(
<SearchInput
onChange={e => {
onChange={(e) => {
e.preventDefault();
return e.target.value;
}}
Expand Down Expand Up @@ -159,7 +159,7 @@ it('renders correctly', () => {
<div
className="c8"
>
<input
aria-describedby="search"
className="c9"
Expand All @@ -173,7 +173,7 @@ it('renders correctly', () => {
value=""
/>
</div>
</label>
</div>
</div>
Expand Down

0 comments on commit 925f753

Please sign in to comment.