1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 10:13:31 +00:00

Removed dependency on os. This is necessary so that the @bitwarden/common/spec lib package can be referenced in tests without node.

This commit is contained in:
Todd Martin
2025-12-10 15:18:53 -05:00
parent 78aa6e824b
commit 669f6557b6

View File

@@ -1,5 +1,3 @@
import { EOL } from "os";
import { diff } from "jest-diff"; import { diff } from "jest-diff";
export const toContainPartialObjects: jest.CustomMatcher = function ( export const toContainPartialObjects: jest.CustomMatcher = function (
@@ -15,7 +13,7 @@ export const toContainPartialObjects: jest.CustomMatcher = function (
return { return {
message: () => message: () =>
"Expected the received array NOT to include partial matches for all expected objects." + "Expected the received array NOT to include partial matches for all expected objects." +
EOL + "\n" +
diff(expected, received), diff(expected, received),
pass: true, pass: true,
}; };
@@ -24,7 +22,7 @@ export const toContainPartialObjects: jest.CustomMatcher = function (
return { return {
message: () => message: () =>
"Expected the received array to contain partial matches for all expected objects." + "Expected the received array to contain partial matches for all expected objects." +
EOL + "\n" +
diff(expected, received), diff(expected, received),
pass: false, pass: false,
}; };