We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df75bc1 commit 407f4a1Copy full SHA for 407f4a1
e2e/components/fullscreen/fullscreen.e2e.ts
@@ -27,13 +27,14 @@ describe('fullscreen', () => {
27
28
/** Expects the overlay container to be inside of the body element. */
29
function expectOverlayInBody() {
30
- expect(browser.isElementPresent(by.css('body > .cdk-overlay-container'))).toBe(true);
+ expect(browser.isElementPresent(by.css('body > .cdk-overlay-container')))
31
+ .toBe(true, 'Expected the overlay container to be inside of the body.');
32
}
33
34
/** Expects the overlay container to be in fullscreen mode. */
35
function expectOverlayInFullscreen() {
36
expect(browser.isElementPresent(by.css('#fullscreen-pane > .cdk-overlay-container')))
- .toBe(true);
37
+ .toBe(true, 'Expected the overlay container to be in fullscreen mode.');
38
39
40
});
0 commit comments