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
20 lines
448 B
TypeScript
20 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!');
|
|
});
|
|
});
|