diff --git a/ponyracer/package.json b/ponyracer/package.json index 49090c34e..e38e44863 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -12,24 +12,24 @@ }, "private": true, "dependencies": { - "@angular/animations": "~9.0.0-next.11", - "@angular/common": "~9.0.0-next.11", - "@angular/compiler": "~9.0.0-next.11", - "@angular/core": "~9.0.0-next.11", - "@angular/forms": "~9.0.0-next.11", - "@angular/platform-browser": "~9.0.0-next.11", - "@angular/platform-browser-dynamic": "~9.0.0-next.11", - "@angular/router": "~9.0.0-next.11", + "@angular/animations": "~9.0.0-next.12", + "@angular/common": "~9.0.0-next.12", + "@angular/compiler": "~9.0.0-next.12", + "@angular/core": "~9.0.0-next.12", + "@angular/forms": "~9.0.0-next.12", + "@angular/platform-browser": "~9.0.0-next.12", + "@angular/platform-browser-dynamic": "~9.0.0-next.12", + "@angular/router": "~9.0.0-next.12", "rxjs": "~6.5.3", "tslib": "^1.10.0", "zone.js": "~0.10.2" }, "devDependencies": { - "@angular-devkit/build-angular": "~0.900.0-next.12", - "@angular/cli": "~9.0.0-next.12", - "@angular/compiler-cli": "~9.0.0-next.11", - "@angular/language-service": "~9.0.0-next.11", - "@types/node": "~10.14.0", + "@angular-devkit/build-angular": "~0.900.0-next.13", + "@angular/cli": "~9.0.0-next.13", + "@angular/compiler-cli": "~9.0.0-next.12", + "@angular/language-service": "~9.0.0-next.12", + "@types/node": "^12.11.1", "@types/jasmine": "~3.4.0", "@types/jasminewd2": "~2.0.3", "codelyzer": "^5.1.2", @@ -43,6 +43,6 @@ "protractor": "~5.4.2", "ts-node": "~8.3.0", "tslint": "~5.18.0", - "typescript": "~3.5.3" + "typescript": "~3.6.4" } } diff --git a/ponyracer/src/app/app.component.spec.ts b/ponyracer/src/app/app.component.spec.ts index 4ecf59d6f..0e8e286d7 100644 --- a/ponyracer/src/app/app.component.spec.ts +++ b/ponyracer/src/app/app.component.spec.ts @@ -12,20 +12,20 @@ describe('AppComponent', () => { it('should create the app', () => { const fixture = TestBed.createComponent(AppComponent); - const app = fixture.debugElement.componentInstance; + const app = fixture.componentInstance; expect(app).toBeTruthy(); }); it(`should have as title 'ponyracer'`, () => { const fixture = TestBed.createComponent(AppComponent); - const app = fixture.debugElement.componentInstance; + const app = fixture.componentInstance; expect(app.title).toEqual('ponyracer'); }); it('should render title', () => { const fixture = TestBed.createComponent(AppComponent); fixture.detectChanges(); - const compiled = fixture.debugElement.nativeElement; + const compiled = fixture.nativeElement; expect(compiled.querySelector('.content span').textContent).toContain('ponyracer app is running!'); }); });