Skip to content

Commit

Permalink
update chromatic tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexasselin008 committed Dec 13, 2024
1 parent 0448ab1 commit c1da40d
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions packages/components/src/Card/tests/chromatic/Card.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,31 +14,27 @@ type Story = StoryObj<typeof meta>;
export const Main = {
render: props => (
<Card {...props}>
Header
Content
Footer
</Card>
)
} satisfies Story;

export const SecondLevel = {
render: props => (
<Card variant="second-level" {...props}>
Header
Content
Footer
</Card>
)
} satisfies Story;

export const EmbeddedCard = {
render: props => (
<Card variant="second-level" {...props}>
Header
Above
<Card>
Embedded
</Card>
Footer
Under
</Card>
)
} satisfies Story;

0 comments on commit c1da40d

Please sign in to comment.