diff --git a/ponyracer/package.json b/ponyracer/package.json index 201d234..19a7b4a 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -20,15 +20,15 @@ "@angular/platform-browser-dynamic": "^19.0.0-next.0", "@angular/platform-server": "^19.0.0-next.0", "@angular/router": "^19.0.0-next.0", - "@angular/ssr": "^19.0.0-next.11", + "@angular/ssr": "^19.0.0-next.12", "express": "^4.18.2", "rxjs": "~7.8.0", "tslib": "^2.3.0", "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^19.0.0-next.11", - "@angular/cli": "^19.0.0-next.11", + "@angular-devkit/build-angular": "^19.0.0-next.12", + "@angular/cli": "^19.0.0-next.12", "@angular/compiler-cli": "^19.0.0-next.0", "@types/express": "^4.17.17", "@types/jasmine": "~5.1.0", diff --git a/ponyracer/src/app/app.component.spec.ts b/ponyracer/src/app/app.component.spec.ts index 374db04..51a74cc 100644 --- a/ponyracer/src/app/app.component.spec.ts +++ b/ponyracer/src/app/app.component.spec.ts @@ -5,7 +5,6 @@ describe('AppComponent', () => { beforeEach(async () => { await TestBed.configureTestingModule({ imports: [AppComponent], - }).compileComponents(); }); diff --git a/ponyracer/src/app/app.config.ts b/ponyracer/src/app/app.config.ts index d2630a9..a9af518 100644 --- a/ponyracer/src/app/app.config.ts +++ b/ponyracer/src/app/app.config.ts @@ -5,7 +5,5 @@ import { routes } from './app.routes'; import { provideClientHydration, withEventReplay } from '@angular/platform-browser'; export const appConfig: ApplicationConfig = { - providers: [ - provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes), provideClientHydration(withEventReplay()) - ] + providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes), provideClientHydration(withEventReplay())] };