mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-24 16:16:27 +08:00
15 lines
377 B
TypeScript
15 lines
377 B
TypeScript
import { <%= jsComponentName %>Page } from './app.po';
|
|
|
|
describe('<%= htmlComponentName %> App', () => {
|
|
let page: <%= jsComponentName %>Page;
|
|
|
|
beforeEach(() => {
|
|
page = new <%= jsComponentName %>Page();
|
|
});
|
|
|
|
it('should display message saying app works', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('<%= prefix %> works!');
|
|
});
|
|
});
|