https://github.com/angular/angular
Raw File
Tip revision: 1bf99e2f9265ce5c289763c5150c3ba4264fd7aa authored by Alex Rickabaugh on 06 July 2023, 23:43:26 UTC
release: cut the v16.1.4 release
Tip revision: 1bf99e2
app.e2e-spec.ts
import {browser, logging} from 'protractor';

import {AppPage} from './app.po';

describe('forms app', () => {
  let page: AppPage;

  beforeEach(() => {
    page = new AppPage();
  });

  it('should display title', () => {
    page.navigateTo();
    expect(page.getTitleText()).toEqual('Forms app');
  });

  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));
  });
});
back to top