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