@@ -18,6 +18,18 @@ jest.mock('../../../lib/components/internal/hooks/use-visual-mode', () => ({
18
18
useVisualRefresh : jest . fn ( ) . mockReturnValue ( false ) ,
19
19
} ) ) ;
20
20
21
+ let mockElementOffsetLeft = 200 ;
22
+
23
+ Object . defineProperties ( window . HTMLElement . prototype , {
24
+ offsetLeft : {
25
+ configurable : true ,
26
+ enumerable : true ,
27
+ get ( ) {
28
+ return mockElementOffsetLeft ;
29
+ } ,
30
+ } ,
31
+ } ) ;
32
+
21
33
function renderAlert ( props : AlertProps = { } ) {
22
34
const { container } = render ( < Alert { ...props } /> ) ;
23
35
return { wrapper : createWrapper ( container ) . findAlert ( ) ! , container } ;
@@ -33,6 +45,7 @@ const i18nStrings: AlertProps.I18nStrings = {
33
45
34
46
beforeEach ( ( ) => {
35
47
jest . mocked ( useVisualRefresh ) . mockReset ( ) ;
48
+ mockElementOffsetLeft = 200 ;
36
49
} ) ;
37
50
38
51
describe ( 'Alert Component' , ( ) => {
@@ -139,6 +152,24 @@ describe('Alert Component', () => {
139
152
expect ( wrapper . findActionSlot ( ) ! . findButton ( ) ! . getElement ( ) ) . toHaveTextContent ( 'Click' ) ;
140
153
} ) ;
141
154
155
+ it ( 'adds wrapped class to actions if they are displayed on a new line' , ( ) => {
156
+ mockElementOffsetLeft = 10 ;
157
+ const { container } = renderAlert ( {
158
+ children : 'Message body' ,
159
+ action : < Button > Click</ Button > ,
160
+ } ) ;
161
+ expect ( container . querySelector ( `.${ styles [ 'action-wrapped' ] } ` ) ) . toBeTruthy ( ) ;
162
+ } ) ;
163
+
164
+ it ( 'does not add wrapped class to actions if they are displayed on same line' , ( ) => {
165
+ mockElementOffsetLeft = 200 ;
166
+ const { container } = renderAlert ( {
167
+ children : 'Message body' ,
168
+ action : < Button > Click</ Button > ,
169
+ } ) ;
170
+ expect ( container . querySelector ( `.${ styles [ 'action-wrapped' ] } ` ) ) . toBeFalsy ( ) ;
171
+ } ) ;
172
+
142
173
it ( 'when both `buttonText` and `action` provided, prefers the latter' , ( ) => {
143
174
const { wrapper } = renderAlert ( {
144
175
children : 'Message body' ,
0 commit comments