1import { AppPage } from './app.po'; 2 3describe('workspace-project App', () => { 4 let page: AppPage; 5 6 beforeEach(() => { 7 page = new AppPage(); 8 }); 9 10 it('should display welcome message', () => { 11 page.navigateTo(); 12 expect(page.getParagraphText()).toEqual('Welcome to frontend!'); 13 }); 14}); 15