From d370f2cffd949a29e86b2a3bfe5000ec9c7b08dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 10:11:16 +0000 Subject: [PATCH 1/2] chore(deps-dev): Bump prettier from 3.5.3 to 3.6.2 Bumps [prettier](https://github.com/prettier/prettier) from 3.5.3 to 3.6.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.5.3...3.6.2) --- updated-dependencies: - dependency-name: prettier dependency-version: 3.6.2 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 91af6c9..4638397 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3188,9 +3188,9 @@ prelude-ls@^1.2.1: integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== prettier@^3.3.2: - version "3.5.3" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.5.3.tgz#4fc2ce0d657e7a02e602549f053b239cb7dfe1b5" - integrity sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw== + version "3.6.2" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.6.2.tgz#ccda02a1003ebbb2bfda6f83a074978f608b9393" + integrity sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ== pretty-format@30.2.0, pretty-format@^30.0.0: version "30.2.0" From 84c8b0df1d9bf27c1751d85526d5f46d8a17cc03 Mon Sep 17 00:00:00 2001 From: Valerii Svydenko Date: Thu, 6 Nov 2025 12:26:49 +0200 Subject: [PATCH 2/2] fix formatting Signed-off-by: Valerii Svydenko --- tests/main.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/main.spec.ts b/tests/main.spec.ts index c42440b..1d0f0bc 100644 --- a/tests/main.spec.ts +++ b/tests/main.spec.ts @@ -102,7 +102,7 @@ describe('Test Main with stubs', () => { spyInitBindings = jest.spyOn(InversifyBinding.prototype, 'initBindings'); spyInitBindings.mockImplementation(() => Promise.resolve(container)); - toSelfMethod.mockReturnValue(selfMock), containerBindMethod.mockReturnValue(bindMock); + (toSelfMethod.mockReturnValue(selfMock), containerBindMethod.mockReturnValue(bindMock)); containerGetMethod.mockReturnValueOnce(generateMock); }); @@ -436,7 +436,7 @@ describe('Test Main with stubs', () => { beforeEach(() => { spyInitBindings = jest.spyOn(InversifyBinding.prototype, 'initBindings'); spyInitBindings.mockImplementation(() => Promise.resolve(container)); - toSelfMethod.mockReturnValue(selfMock), containerBindMethod.mockReturnValue(bindMock); + (toSelfMethod.mockReturnValue(selfMock), containerBindMethod.mockReturnValue(bindMock)); }); afterEach(() => {