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 () {
36
36
37
37
inputEl . getAttribute ( 'checked' ) . then ( ( value : string ) => {
38
38
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' ) ) ;
42
39
} ) ;
43
40
44
41
inputEl . sendKeys ( Key . SPACE ) ;
45
42
46
43
inputEl . getAttribute ( 'checked' ) . then ( ( value : string ) => {
47
44
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' ) ) ;
51
45
} ) ;
52
46
} ) ;
53
-
54
47
} ) ;
55
48
} ) ;
You can’t perform that action at this time.
0 commit comments