File tree 1 file changed +2
-2
lines changed
__tests__/components/buttons
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ describe("SendButton Component", () => {
143
143
expect ( button ) . toHaveStyle ( `backgroundColor: ${ DefaultStyles . sendButtonDisabledStyle ?. backgroundColor } ` ) ;
144
144
145
145
// Check cursor style when button is disabled
146
- expect ( button ) . toHaveStyle ( `cursor: url(undefined), auto` ) ;
146
+ expect ( button ) . toHaveStyle ( `cursor: url(" undefined" ), auto` ) ;
147
147
148
148
// Simulate hover (should not change color when textArea is disabled)
149
149
fireEvent . mouseEnter ( button ) ;
@@ -172,7 +172,7 @@ describe("SendButton Component", () => {
172
172
expect ( button ) . toHaveStyle ( `backgroundColor: ${ DefaultSettings . general ?. primaryColor } ` ) ;
173
173
174
174
// Check cursor style when button is disabled
175
- expect ( button ) . toHaveStyle ( `cursor: url(undefined), auto` ) ;
175
+ expect ( button ) . toHaveStyle ( `cursor: url(" undefined" ), auto` ) ;
176
176
177
177
// Simulate hover (should not change color when textArea is disabled)
178
178
fireEvent . mouseEnter ( button ) ;
You can’t perform that action at this time.
0 commit comments