mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
894c1c5f10
Apply prettier formatting to integration directories PR Close #54653
27 lines
618 B
TypeScript
27 lines
618 B
TypeScript
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),
|
|
);
|
|
});
|
|
});
|