annotate e2e/app.e2e-spec.ts @ 402:f9d5006f76e1

Change curve component to not render vertical scale / highlight by default. Delegate to child TrackComponent for that work, so the curve can be used like tracks, notes etc.
author Lucas Thompson <dev@lucas.im>
date Fri, 02 Jun 2017 19:10:47 +0100
parents 53ea6406d601
children
rev   line source
angular-cli@0 1 import { UglyDucklingPage } from './app.po';
angular-cli@0 2
dev@236 3 describe('ugly-duckling App', () => {
angular-cli@0 4 let page: UglyDucklingPage;
angular-cli@0 5
angular-cli@0 6 beforeEach(() => {
angular-cli@0 7 page = new UglyDucklingPage();
angular-cli@0 8 });
angular-cli@0 9
angular-cli@0 10 it('should display message saying app works', () => {
angular-cli@0 11 page.navigateTo();
angular-cli@0 12 expect(page.getParagraphText()).toEqual('app works!');
angular-cli@0 13 });
angular-cli@0 14 });