@@ -399,7 +399,7 @@ describe('dialog', () => {
399
399
}
400
400
/> ,
401
401
) ;
402
- expect ( modalRender . find ( '.rc-dialog-content ' ) . props ( ) . style . background ) . toEqual ( '#1890ff' ) ;
402
+ expect ( modalRender . find ( '.rc-dialog-section ' ) . props ( ) . style . background ) . toEqual ( '#1890ff' ) ;
403
403
} ) ;
404
404
405
405
describe ( 'focusTriggerAfterClose' , ( ) => {
@@ -589,7 +589,7 @@ describe('dialog', () => {
589
589
footer : 'custom-footer' ,
590
590
mask : 'custom-mask' ,
591
591
wrapper : 'custom-wrapper' ,
592
- content : 'custom-content ' ,
592
+ section : 'custom-section ' ,
593
593
} }
594
594
style = { { width : 600 } }
595
595
height = { 903 }
@@ -604,7 +604,7 @@ describe('dialog', () => {
604
604
expect ( wrapper . find ( '.rc-dialog-header' ) . props ( ) . className ) . toContain ( 'custom-header' ) ;
605
605
expect ( wrapper . find ( '.rc-dialog-footer' ) . props ( ) . className ) . toContain ( 'custom-footer' ) ;
606
606
expect ( wrapper . find ( '.rc-dialog-mask' ) . props ( ) . className ) . toContain ( 'custom-mask' ) ;
607
- expect ( wrapper . find ( '.rc-dialog-content ' ) . props ( ) . className ) . toContain ( 'custom-content ' ) ;
607
+ expect ( wrapper . find ( '.rc-dialog-section ' ) . props ( ) . className ) . toContain ( 'custom-section ' ) ;
608
608
} ) ;
609
609
610
610
it ( 'should support styles' , ( ) => {
@@ -619,7 +619,8 @@ describe('dialog', () => {
619
619
footer : { background : 'blue' } ,
620
620
mask : { background : 'yellow' } ,
621
621
wrapper : { background : 'pink' } ,
622
- content : { background : 'orange' } ,
622
+ section : { background : 'orange' } ,
623
+ title : { background : 'orange' } ,
623
624
} }
624
625
style = { { width : 600 } }
625
626
height = { 903 }
@@ -634,7 +635,8 @@ describe('dialog', () => {
634
635
expect ( wrapper . find ( '.rc-dialog-header' ) . props ( ) . style . background ) . toBe ( 'red' ) ;
635
636
expect ( wrapper . find ( '.rc-dialog-footer' ) . props ( ) . style . background ) . toBe ( 'blue' ) ;
636
637
expect ( wrapper . find ( '.rc-dialog-mask' ) . props ( ) . style . background ) . toBe ( 'yellow' ) ;
637
- expect ( wrapper . find ( '.rc-dialog-content' ) . props ( ) . style . background ) . toBe ( 'orange' ) ;
638
+ expect ( wrapper . find ( '.rc-dialog-section' ) . props ( ) . style . background ) . toBe ( 'orange' ) ;
639
+ expect ( wrapper . find ( '.rc-dialog-title' ) . props ( ) . style . background ) . toBe ( 'orange' ) ;
638
640
} ) ;
639
641
it ( 'should warning' , ( ) => {
640
642
const spy = jest . spyOn ( console , 'error' ) . mockImplementation ( ( ) => { } ) ;
0 commit comments