File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -36,20 +36,13 @@ describe('checkbox', function () {
3636
3737 inputEl . getAttribute ( 'checked' ) . then ( ( value : string ) => {
3838 expect ( value ) . toBeFalsy ( 'Expect checkbox "checked" property to be false' ) ;
39- browser . wait ( ExpectedConditions . not (
40- ExpectedConditions . presenceOf ( element ( by . css ( 'div.mat-ripple-element' ) ) ) ) )
41- . then ( ( ) => screenshot ( 'start' ) ) ;
4239 } ) ;
4340
4441 inputEl . sendKeys ( Key . SPACE ) ;
4542
4643 inputEl . getAttribute ( 'checked' ) . then ( ( value : string ) => {
4744 expect ( value ) . toBeTruthy ( 'Expect checkbox "checked" property to be true' ) ;
48- browser . wait ( ExpectedConditions . not (
49- ExpectedConditions . presenceOf ( element ( by . css ( 'div.mat-ripple-element' ) ) ) ) )
50- . then ( ( ) => screenshot ( 'pressed space' ) ) ;
5145 } ) ;
5246 } ) ;
53-
5447 } ) ;
5548} ) ;
You can’t perform that action at this time.
0 commit comments