File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
e2e/components/fullscreen Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,14 @@ describe('fullscreen', () => {
27
27
28
28
/** Expects the overlay container to be inside of the body element. */
29
29
function expectOverlayInBody ( ) {
30
- expect ( browser . isElementPresent ( by . css ( 'body > .cdk-overlay-container' ) ) ) . toBe ( true ) ;
30
+ expect ( browser . isElementPresent ( by . css ( 'body > .cdk-overlay-container' ) ) )
31
+ . toBe ( true , 'Expected the overlay container to be inside of the body.' ) ;
31
32
}
32
33
33
34
/** Expects the overlay container to be in fullscreen mode. */
34
35
function expectOverlayInFullscreen ( ) {
35
36
expect ( browser . isElementPresent ( by . css ( '#fullscreen-pane > .cdk-overlay-container' ) ) )
36
- . toBe ( true ) ;
37
+ . toBe ( true , 'Expected the overlay container to be in fullscreen mode.' ) ;
37
38
}
38
39
39
40
} ) ;
You can’t perform that action at this time.
0 commit comments