https://github.com/angular/angular
Raw File
Tip revision: c8d891ec30234d7d89c5fd875f581d60db328eac authored by Alex Rickabaugh on 28 September 2022, 21:12:33 UTC
release: cut the v14.2.4 release
Tip revision: c8d891e
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