bun run prettier

This commit is contained in:
pfgithub
2025-06-30 20:46:49 +00:00
committed by github-actions[bot]
parent 2161bab402
commit 511330873c

View File

@@ -4157,13 +4157,13 @@ describe("expect()", () => {
expect(expect.objectContaining({ first: { second: {} } })).not.toEqual({
first: { second: {}, third: {} },
});
expect(
(expect(
expect.objectContaining({
answer: 42,
foo: { bar: "baz", foobar: "qux" },
}),
).not.toEqual({ foo: { bar: "baz" } }),
expect(expect.objectContaining({ [foo]: "foo" })).not.toEqual({ [bar]: "bar" });
expect(expect.objectContaining({ [foo]: "foo" })).not.toEqual({ [bar]: "bar" }));
});
test("ObjectContaining matches defined properties", () => {