Skip to content

Commit

Permalink
fixup! Feat(web-react): Introduce Box component #DS-1595
Browse files Browse the repository at this point in the history
  • Loading branch information
curdaj committed Dec 31, 2024
1 parent d61cbb0 commit 3e5dcb7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ describe('useBoxStyleProps', () => {
};
const { result } = renderHook(() => useBoxStyleProps(props));

expect(result.current.classProps).toBe('border-basic rounded-200 border-100');
expect(result.current.classProps).toBe('border-basic rounded-200 border-100 border-solid');
});

it('should not return border radius classProps if border with is not set', () => {
Expand All @@ -117,6 +117,6 @@ describe('useBoxStyleProps', () => {
};
const { result } = renderHook(() => useBoxStyleProps(props));

expect(result.current.classProps).toBe('border-basic border-100');
expect(result.current.classProps).toBe('border-basic border-100 border-solid');
});
});

0 comments on commit 3e5dcb7

Please sign in to comment.