Skip to content

Commit

Permalink
Fix code style issues with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Jul 14, 2021
1 parent e9e1ab9 commit 378ceb9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ui-components/__tests__/blocks/ImageCard.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ afterEach(cleanup)
describe("<ImageCard>", () => {
it("renders title, subtitle, image and alt text", () => {
const { getByText, getByAltText } = render(
<ImageCard imageUrl={"/images/listing.jpg"} title={"My Building"} subtitle={"The Address"} description={"A description of the image"} />
<ImageCard
imageUrl={"/images/listing.jpg"}
title={"My Building"}
subtitle={"The Address"}
description={"A description of the image"}
/>
)
expect(getByText("My Building")).not.toBeNull()
expect(getByText("The Address")).not.toBeNull()
Expand Down

0 comments on commit 378ceb9

Please sign in to comment.