angular/integration/forms/e2e/src/app.e2e-spec.ts
Andrew Kushnir 4637df5551 test(forms): add integration test app to keep track of payload size (#41045)
This commit adds a Forms-based test app into the `integration` folder to have an ability to measure and keep
track of payload size for the changes in Forms package.

PR Close #41045
2021-03-05 09:45:42 -08:00

24 lines
601 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));
});
});