From 3e5dcb7c4217a994b4065f4dec03900b0f1aabbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C4=8Curda?= Date: Tue, 31 Dec 2024 11:18:06 +0100 Subject: [PATCH] fixup! Feat(web-react): Introduce Box component #DS-1595 --- .../src/components/Box/__tests__/useBoxStyleProps.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/web-react/src/components/Box/__tests__/useBoxStyleProps.test.ts b/packages/web-react/src/components/Box/__tests__/useBoxStyleProps.test.ts index 29e7805391..8c13f3dccb 100644 --- a/packages/web-react/src/components/Box/__tests__/useBoxStyleProps.test.ts +++ b/packages/web-react/src/components/Box/__tests__/useBoxStyleProps.test.ts @@ -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', () => { @@ -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'); }); });