mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
24 lines
601 B
TypeScript
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));
|
|
});
|
|
});
|