9de4b1c441
PR Close #33175
29 lines
820 B
TypeScript
29 lines
820 B
TypeScript
import { AppPage } from './app.po';
|
|
import { browser, logging, element, by } from 'protractor';
|
|
|
|
describe('cli-hello-world-lazy App', () => {
|
|
let page: AppPage;
|
|
|
|
beforeEach(() => {
|
|
page = new AppPage();
|
|
});
|
|
|
|
it('should display welcome message', () => {
|
|
page.navigateTo();
|
|
expect(page.getTitleText()).toEqual('cli-hello-world-lazy app is running!');
|
|
});
|
|
|
|
it('should display lazy route', () => {
|
|
browser.get('/lazy');
|
|
expect(element(by.css('app-lazy p')).getText()).toEqual('lazy works!');
|
|
});
|
|
|
|
afterEach(async () => {
|
|
// Assert that there are no errors emitted from the browser
|
|
const logs = await browser.manage().logs().get(logging.Type.BROWSER);
|
|
expect(logs).not.toContain(jasmine.objectContaining({
|
|
level: logging.Level.SEVERE,
|
|
} as logging.Entry));
|
|
});
|
|
});
|