From 15d5da5a6a86ce76079a6692d03d43f7f7c280ad Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Thu, 5 Oct 2023 00:58:28 +0000 Subject: [PATCH] chore: version 17.0.0-next.7 --- ponyracer/README.md | 2 +- ponyracer/package.json | 4 ++-- .../ponyracer-lib/src/lib/ponyracer-lib.component.spec.ts | 8 +++++--- ponyracer/tsconfig.json | 3 +-- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/ponyracer/README.md b/ponyracer/README.md index fc17f03..dcf4bfe 100644 --- a/ponyracer/README.md +++ b/ponyracer/README.md @@ -1,6 +1,6 @@ # Ponyracer -This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.0.0-next.6. +This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.0.0-next.7. ## Development server diff --git a/ponyracer/package.json b/ponyracer/package.json index 6170e5a..131eb5d 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -23,8 +23,8 @@ "zone.js": "~0.14.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^17.0.0-next.6", - "@angular/cli": "^17.0.0-next.6", + "@angular-devkit/build-angular": "^17.0.0-next.7", + "@angular/cli": "^17.0.0-next.7", "@angular/compiler-cli": "^17.0.0-next.0", "@types/jasmine": "~4.3.0", "jasmine-core": "~5.1.0", diff --git a/ponyracer/projects/ponyracer-lib/src/lib/ponyracer-lib.component.spec.ts b/ponyracer/projects/ponyracer-lib/src/lib/ponyracer-lib.component.spec.ts index 320d7b4..05abffd 100644 --- a/ponyracer/projects/ponyracer-lib/src/lib/ponyracer-lib.component.spec.ts +++ b/ponyracer/projects/ponyracer-lib/src/lib/ponyracer-lib.component.spec.ts @@ -6,10 +6,12 @@ describe('PonyracerLibComponent', () => { let component: PonyracerLibComponent; let fixture: ComponentFixture; - beforeEach(() => { - TestBed.configureTestingModule({ + beforeEach(async () => { + await TestBed.configureTestingModule({ imports: [PonyracerLibComponent] - }); + }) + .compileComponents(); + fixture = TestBed.createComponent(PonyracerLibComponent); component = fixture.componentInstance; fixture.detectChanges(); diff --git a/ponyracer/tsconfig.json b/ponyracer/tsconfig.json index dd734b9..a929438 100644 --- a/ponyracer/tsconfig.json +++ b/ponyracer/tsconfig.json @@ -2,7 +2,6 @@ { "compileOnSave": false, "compilerOptions": { - "baseUrl": "./", "outDir": "./dist/out-tsc", "forceConsistentCasingInFileNames": true, "strict": true, @@ -19,7 +18,7 @@ "importHelpers": true, "paths": { "ponyracer-lib": [ - "dist/ponyracer-lib" + "./dist/ponyracer-lib" ] }, "target": "ES2022",