Describe the bug
assertEquals incorrectly says the example below isn't equal and fails to actually highlight any difference between them.
Steps to Reproduce
import { assertEquals } from "@std/assert";
assertEquals(
new File([new Uint8Array(10)], "blob", { type: "application/octet-stream" }),
new File([new Uint8Array(10)], "blob", { type: "application/octet-stream" })
);
Expected behavior
It not say they're different.
Environment