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