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', () => {
2727
2828 /** Expects the overlay container to be inside of the body element. */
2929 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.' ) ;
3132 }
3233
3334 /** Expects the overlay container to be in fullscreen mode. */
3435 function expectOverlayInFullscreen ( ) {
3536 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.' ) ;
3738 }
3839
3940} ) ;
You can’t perform that action at this time.
0 commit comments