From 669f6557b6561f65ff513c14c2b3e8a55bef4035 Mon Sep 17 00:00:00 2001 From: Todd Martin Date: Wed, 10 Dec 2025 15:18:53 -0500 Subject: [PATCH] Removed dependency on os. This is necessary so that the @bitwarden/common/spec lib package can be referenced in tests without node. --- libs/common/spec/matchers/to-contain-partial-objects.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libs/common/spec/matchers/to-contain-partial-objects.ts b/libs/common/spec/matchers/to-contain-partial-objects.ts index f072ca6fba6..dfe635b734c 100644 --- a/libs/common/spec/matchers/to-contain-partial-objects.ts +++ b/libs/common/spec/matchers/to-contain-partial-objects.ts @@ -1,5 +1,3 @@ -import { EOL } from "os"; - import { diff } from "jest-diff"; export const toContainPartialObjects: jest.CustomMatcher = function ( @@ -15,7 +13,7 @@ export const toContainPartialObjects: jest.CustomMatcher = function ( return { message: () => "Expected the received array NOT to include partial matches for all expected objects." + - EOL + + "\n" + diff(expected, received), pass: true, }; @@ -24,7 +22,7 @@ export const toContainPartialObjects: jest.CustomMatcher = function ( return { message: () => "Expected the received array to contain partial matches for all expected objects." + - EOL + + "\n" + diff(expected, received), pass: false, };