From 7a8f45c1f524318c9b70077860038d4028d0400a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 12:21:19 +0100 Subject: [PATCH] chore(deps-dev): bump the angular-all-deps group across 1 directory with 2 updates (#311) * chore(deps-dev): bump the angular-all-deps group across 1 directory with 2 updates Bumps the angular-all-deps group with 2 updates in the /test/angular directory: [@types/jasmine](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jasmine) and [jasmine-core](https://github.com/jasmine/jasmine). Updates `@types/jasmine` from 5.1.4 to 5.1.5 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jasmine) Updates `jasmine-core` from 5.4.0 to 5.5.0 - [Release notes](https://github.com/jasmine/jasmine/releases) - [Changelog](https://github.com/jasmine/jasmine/blob/main/RELEASE.md) - [Commits](https://github.com/jasmine/jasmine/compare/v5.4.0...v5.5.0) --- updated-dependencies: - dependency-name: "@types/jasmine" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: angular-all-deps - dependency-name: jasmine-core dependency-type: direct:development update-type: version-update:semver-minor dependency-group: angular-all-deps ... Signed-off-by: dependabot[bot] * Change the test to use `waitForAsync` rather than `async` --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Louis-Maxime Piton --- test/angular/package-lock.json | 16 ++++++++-------- test/angular/package.json | 4 ++-- test/angular/src/app/map/map.component.spec.ts | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/test/angular/package-lock.json b/test/angular/package-lock.json index 759cda06..708cdaf5 100644 --- a/test/angular/package-lock.json +++ b/test/angular/package-lock.json @@ -25,11 +25,11 @@ "@angular-devkit/build-angular": "^19.0.4", "@angular/cli": "^19.0.4", "@angular/compiler-cli": "^19.0.4", - "@types/jasmine": "~5.1.4", + "@types/jasmine": "~5.1.5", "@types/leaflet": "^1.5.19", "boosted": "^5.3.3", "iotmapmanager": "file:../../src/iotMapManager", - "jasmine-core": "~5.4.0", + "jasmine-core": "~5.5.0", "karma": "~6.4.4", "karma-chrome-launcher": "~3.2.0", "karma-coverage": "~2.2.0", @@ -5318,9 +5318,9 @@ } }, "node_modules/@types/jasmine": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-5.1.4.tgz", - "integrity": "sha512-px7OMFO/ncXxixDe1zR13V1iycqWae0MxTaw62RpFlksUi5QuNWgQJFkTQjIOvrmutJbI7Fp2Y2N1F6D2R4G6w==", + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-5.1.5.tgz", + "integrity": "sha512-SaCZ3kM5NjOiJqMRYwHpLbTfUC2Dyk1KS3QanNFsUYPGTk70CWVK/J9ueun6zNhw/UkgV7xl8V4ZLQZNRbfnNw==", "dev": true }, "node_modules/@types/json-schema": { @@ -9023,9 +9023,9 @@ } }, "node_modules/jasmine-core": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-5.4.0.tgz", - "integrity": "sha512-T4fio3W++llLd7LGSGsioriDHgWyhoL6YTu4k37uwJLF7DzOzspz7mNxRoM3cQdLWtL/ebazQpIf/yZGJx/gzg==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-5.5.0.tgz", + "integrity": "sha512-NHOvoPO6o9gVR6pwqEACTEpbgcH+JJ6QDypyymGbSUIFIFsMMbBJ/xsFNud8MSClfnWclXd7RQlAZBz7yVo5TQ==", "dev": true }, "node_modules/jest-worker": { diff --git a/test/angular/package.json b/test/angular/package.json index cf9038c2..a6ed082b 100644 --- a/test/angular/package.json +++ b/test/angular/package.json @@ -27,11 +27,11 @@ "@angular-devkit/build-angular": "^19.0.4", "@angular/cli": "^19.0.4", "@angular/compiler-cli": "^19.0.4", - "@types/jasmine": "~5.1.4", + "@types/jasmine": "~5.1.5", "@types/leaflet": "^1.5.19", "boosted": "^5.3.3", "iotmapmanager": "file:../../src/iotMapManager", - "jasmine-core": "~5.4.0", + "jasmine-core": "~5.5.0", "karma": "~6.4.4", "karma-chrome-launcher": "~3.2.0", "karma-coverage": "~2.2.0", diff --git a/test/angular/src/app/map/map.component.spec.ts b/test/angular/src/app/map/map.component.spec.ts index 0b792b9b..98f55320 100644 --- a/test/angular/src/app/map/map.component.spec.ts +++ b/test/angular/src/app/map/map.component.spec.ts @@ -1,9 +1,9 @@ -import { TestBed, async } from '@angular/core/testing'; +import { TestBed, waitForAsync } from '@angular/core/testing'; import { RouterTestingModule } from '@angular/router/testing'; import { MapComponent } from './map.component'; describe('AppComponent', () => { - beforeEach(async(() => { + beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ imports: [ RouterTestingModule