angular/integration/dynamic-compiler/e2e/app.e2e-spec.ts
Joey Perrott 894c1c5f10 refactor: apply prettier formatting to integration (#54653)
Apply prettier formatting to integration directories

PR Close #54653
2024-04-02 20:42:04 +00:00

19 lines
448 B
TypeScript

import {AppPage} from './app.po';
describe('dynamic-compiler App', () => {
let page: AppPage;
beforeEach(() => {
page = new AppPage();
});
it('should display welcome message', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('Hello world!');
});
it('should display lazy-loaded component', () => {
page.navigateTo();
expect(page.getLazyLoadedText()).toEqual('Lazy-loaded component!');
});
});