diff --git a/ponyracer/package.json b/ponyracer/package.json index 6611f348b..131e73654 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,9 +26,9 @@ }, "devDependencies": { "@angular/compiler-cli": "^6.0.3", - "@angular-devkit/build-angular": "~0.6.8", + "@angular-devkit/build-angular": "~0.7.0-beta.0", "typescript": "~2.7.2", - "@angular/cli": "~6.0.8", + "@angular/cli": "~6.1.0-beta.0", "@angular/language-service": "^6.0.3", "@types/jasmine": "~2.8.6", "@types/jasminewd2": "~2.0.3", diff --git a/ponyracer/src/app/app.component.spec.ts b/ponyracer/src/app/app.component.spec.ts index 8de81dcf3..d3e633b58 100644 --- a/ponyracer/src/app/app.component.spec.ts +++ b/ponyracer/src/app/app.component.spec.ts @@ -13,10 +13,10 @@ describe('AppComponent', () => { const app = fixture.debugElement.componentInstance; expect(app).toBeTruthy(); })); - it(`should have as title 'app'`, async(() => { + it(`should have as title 'ponyracer'`, async(() => { const fixture = TestBed.createComponent(AppComponent); const app = fixture.debugElement.componentInstance; - expect(app.title).toEqual('app'); + expect(app.title).toEqual('ponyracer'); })); it('should render title in a h1 tag', async(() => { const fixture = TestBed.createComponent(AppComponent); diff --git a/ponyracer/src/app/app.component.ts b/ponyracer/src/app/app.component.ts index 7b0f67283..18c5ef59e 100644 --- a/ponyracer/src/app/app.component.ts +++ b/ponyracer/src/app/app.component.ts @@ -6,5 +6,5 @@ import { Component } from '@angular/core'; styleUrls: ['./app.component.css'] }) export class AppComponent { - title = 'app'; + title = 'ponyracer'; }