diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.equals.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.equals.js index 85cc99fc44..b02d088745 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.equals.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.equals.js @@ -1,4 +1,8 @@ describe("correct behavior", () => { + test("length is 1", () => { + expect(Temporal.Instant.prototype.equals).toHaveLength(1); + }); + test("basic functionality", () => { const instant1 = new Temporal.Instant(111n); expect(instant1.equals(instant1));