| 1234567891011121314 |
- import { FrontendPage } from './app.po';
- describe('frontend App', function() {
- let page: FrontendPage;
- beforeEach(() => {
- page = new FrontendPage();
- });
- it('should display message saying app works', () => {
- page.navigateTo();
- expect(page.getParagraphText()).toEqual('app works!');
- });
- });
|