File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ describe('MatTextareaAutosize', () => {
84
84
. toBe ( textarea . scrollHeight , 'Expected textarea height to match its scrollHeight' ) ;
85
85
} ) ;
86
86
87
- it ( 'should set a min-width based on minRows' , ( ) => {
87
+ it ( 'should set a min-height based on minRows' , ( ) => {
88
88
expect ( textarea . style . minHeight ) . toBeFalsy ( ) ;
89
89
90
90
fixture . componentInstance . minRows = 4 ;
@@ -100,7 +100,7 @@ describe('MatTextareaAutosize', () => {
100
100
. toBeGreaterThan ( previousMinHeight , 'Expected increased min-height with minRows increase.' ) ;
101
101
} ) ;
102
102
103
- it ( 'should set a max-width based on maxRows' , ( ) => {
103
+ it ( 'should set a max-height based on maxRows' , ( ) => {
104
104
expect ( textarea . style . maxHeight ) . toBeFalsy ( ) ;
105
105
106
106
fixture . componentInstance . maxRows = 4 ;
You can’t perform that action at this time.
0 commit comments