Skip to content

Commit

Permalink
update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemh committed Jan 17, 2024
1 parent d0e3626 commit 73755d0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ exports[`FlatCard should render with many props assigned 1`] = `
className="box-border my-6 mx-4 relative max-w-[400px] test-class"
>
<div
className="p-8 border-4 border-solid border-themePrimary"
className="p-8 flex flex-col gap-5 border-4 border-solid border-themePrimary"
>
<div
className="order-2 text-center"
className="text-center"
>
<h1>
Main heading
Expand All @@ -18,7 +18,7 @@ exports[`FlatCard should render with many props assigned 1`] = `
</h6>
</div>
<hr
className="w-10/12 border-solid border-themePrimary"
className="w-full border-2 border-solid border-themePrimary"
/>
<div>
<p>
Expand Down Expand Up @@ -49,7 +49,7 @@ exports[`FlatCard should render with required props 1`] = `
className="box-border my-6 mx-4 relative max-w-[400px]"
>
<div
className="p-8 border-4 border-solid border-themePrimary"
className="p-8 flex flex-col gap-5 border-4 border-solid border-themePrimary"
>
<div>
<p>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,31 +1,18 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`SuccessStory should render with required props 1`] = `
<div
className="box-border flex flex-col flex-nowrap items-center my-12 mx-4 pt-14 relative max-w-[320px] h-[940px] md:h-[748px] sm:h-auto"
<FlatCard
button={null}
header="Great testing culture"
image={
Object {
"alt": "",
"source": "image.png",
}
}
>
<div
className="absolute top-0 h-48 shadow-[1px_2px_5p_3px_rgba(0, 0, 0, 0.35)]"
>
<MockedNextImage
alt="Great testing culture headshot"
height={200}
layout="fixed"
src="image.png"
width={200}
/>
</div>
<div
className="flex flex-1 flex-col flex-nowrap items-center p-8 pt-40 border-2 border-solid border-themePrimary [&>blockquote]:my-4 [&>blockquote]:mx-0 [&>blockquote]:text-base"
>
<h6
className="text-center text-base"
>
Great testing culture
</h6>
<blockquote>
"Best test of my life!"
</blockquote>
</div>
</div>
<blockquote>
"Best test of my life!"
</blockquote>
</FlatCard>
`;

2 comments on commit 73755d0

@vercel
Copy link

@vercel vercel bot commented on 73755d0 Jan 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 73755d0 Jan 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.