Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bolariin committed Jul 6, 2024
1 parent 718080a commit ef1822c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/MethodCard/tests/MethodCard.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,15 @@ describe('<MethodCard />', () => {
});
});

it('renders the title align start and blockAlign center', () => {
it('renders the title align space-between and blockAlign center', () => {
const methodCard = mountWithApp(<MethodCard {...mockProps} />);

expect(methodCard).toContainReactComponent(Card, {
padding: '400',
});
expect(methodCard).toContainReactComponent(InlineStack, {
align: 'start',
align: 'space-between',
blockAlign: 'center',
gap: '100',
});
});

Expand Down

0 comments on commit ef1822c

Please sign in to comment.