import { RockPaperScissorsPage } from './app.po'; describe('rock-paper-scissors App', () => { let page: RockPaperScissorsPage; beforeEach(() => { page = new RockPaperScissorsPage(); }); it('should display welcome message', () => { page.navigateTo(); expect(page.getParagraphText()).toEqual('Welcome to app!'); }); });