diff --git a/Userland/Libraries/LibJS/Tests/builtins/Date/Date.prototype.toTemporalInstant.js b/Userland/Libraries/LibJS/Tests/builtins/Date/Date.prototype.toTemporalInstant.js index 42f0c8b744..e5ca47bb89 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Date/Date.prototype.toTemporalInstant.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Date/Date.prototype.toTemporalInstant.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Date object", () => { expect(() => { Date.prototype.toTemporalInstant.call(123); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Number/Number.prototype.toFixed.js b/Userland/Libraries/LibJS/Tests/builtins/Number/Number.prototype.toFixed.js index 12f99616cd..5d187823b6 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Number/Number.prototype.toFixed.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Number/Number.prototype.toFixed.js @@ -26,7 +26,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("must be called with numeric |this|", () => { [true, [], {}, Symbol("foo"), "bar", 1n].forEach(value => { expect(() => Number.prototype.toFixed.call(value)).toThrowWithMessage( diff --git a/Userland/Libraries/LibJS/Tests/builtins/Number/Number.prototype.toString.js b/Userland/Libraries/LibJS/Tests/builtins/Number/Number.prototype.toString.js index 7ebc4fb748..75d9f3a6d9 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Number/Number.prototype.toString.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Number/Number.prototype.toString.js @@ -72,7 +72,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("must be called with numeric |this|", () => { [true, [], {}, Symbol("foo"), "bar", 1n].forEach(value => { expect(() => Number.prototype.toString.call(value)).toThrowWithMessage( diff --git a/Userland/Libraries/LibJS/Tests/builtins/Number/Number.prototype.valueOf.js b/Userland/Libraries/LibJS/Tests/builtins/Number/Number.prototype.valueOf.js index 7871a1ed43..fca0412244 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Number/Number.prototype.valueOf.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Number/Number.prototype.valueOf.js @@ -9,7 +9,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("must be called with numeric |this|", () => { [true, [], {}, Symbol("foo"), "bar", 1n].forEach(value => { expect(() => Number.prototype.valueOf.call(value)).toThrowWithMessage( diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Calendar/Calendar.prototype.toString.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Calendar/Calendar.prototype.toString.js index cac3052267..6ce0f85945 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Calendar/Calendar.prototype.toString.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Calendar/Calendar.prototype.toString.js @@ -9,7 +9,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Calendar object", () => { expect(() => { Temporal.Calendar.prototype.toString.call("foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.abs.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.abs.js index d5e6b6b840..5d6c4bceb3 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.abs.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.abs.js @@ -44,7 +44,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Temporal.Duration.prototype.abs.call("foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.blank.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.blank.js index cb36c93ac9..8e6d7e048b 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.blank.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.blank.js @@ -8,7 +8,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Reflect.get(Temporal.Duration.prototype, "blank", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.days.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.days.js index d660d54c2b..c224078eca 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.days.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.days.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Reflect.get(Temporal.Duration.prototype, "days", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.hours.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.hours.js index 38b4a18c94..aa4b13e799 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.hours.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.hours.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Reflect.get(Temporal.Duration.prototype, "hours", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.microseconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.microseconds.js index 8abf810aef..b12c4ff110 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.microseconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.microseconds.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Reflect.get(Temporal.Duration.prototype, "microseconds", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.milliseconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.milliseconds.js index 01da80b3f1..1af482a1b5 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.milliseconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.milliseconds.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Reflect.get(Temporal.Duration.prototype, "milliseconds", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.minutes.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.minutes.js index 8ef450dc46..ff3e812aef 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.minutes.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.minutes.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Reflect.get(Temporal.Duration.prototype, "minutes", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.months.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.months.js index 3e337a4fe0..cf0aedc205 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.months.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.months.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Reflect.get(Temporal.Duration.prototype, "months", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.nanoseconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.nanoseconds.js index 53faa248b0..340195b3a0 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.nanoseconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.nanoseconds.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Reflect.get(Temporal.Duration.prototype, "nanoseconds", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.negated.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.negated.js index f62a07c368..0b51f6789e 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.negated.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.negated.js @@ -33,7 +33,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Temporal.Duration.prototype.negated.call("foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.seconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.seconds.js index 510ab6e71b..9ef68c1710 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.seconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.seconds.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Reflect.get(Temporal.Duration.prototype, "seconds", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.sign.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.sign.js index 024666a728..62790c9b2d 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.sign.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.sign.js @@ -8,7 +8,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Reflect.get(Temporal.Duration.prototype, "sign", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.valueOf.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.valueOf.js index ab779bfbb0..fb7a69cb6e 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.valueOf.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.valueOf.js @@ -1,4 +1,4 @@ -test("errors", () => { +describe("errors", () => { test("throws TypeError", () => { expect(() => { new Temporal.Duration().valueOf(); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.weeks.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.weeks.js index c75b84018b..0f7938840c 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.weeks.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.weeks.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Reflect.get(Temporal.Duration.prototype, "weeks", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.with.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.with.js index 23c534b02a..e2e4d94cc7 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.with.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.with.js @@ -38,7 +38,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Temporal.Duration.prototype.with.call("foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.years.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.years.js index 3b59d4c9ee..153db4ef1f 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.years.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Duration/Duration.prototype.years.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Duration object", () => { expect(() => { Reflect.get(Temporal.Duration.prototype, "years", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochMicroseconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochMicroseconds.js index 230f0f2b07..705f3efac5 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochMicroseconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochMicroseconds.js @@ -24,7 +24,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("argument must be coercible to BigInt", () => { expect(() => { Temporal.Instant.fromEpochMicroseconds(123); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochMilliseconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochMilliseconds.js index e950b50164..df7f5258c6 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochMilliseconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochMilliseconds.js @@ -24,7 +24,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("argument must be coercible to BigInt", () => { expect(() => { Temporal.Instant.fromEpochMilliseconds(1.23); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochNanoseconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochNanoseconds.js index f2107caae8..08a0c91aba 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochNanoseconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochNanoseconds.js @@ -24,7 +24,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("argument must be coercible to BigInt", () => { expect(() => { Temporal.Instant.fromEpochNanoseconds(123); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochSeconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochSeconds.js index a5596c5d86..10d1f8686d 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochSeconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.fromEpochSeconds.js @@ -20,7 +20,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("argument must be coercible to BigInt", () => { expect(() => { Temporal.Instant.fromEpochSeconds(1.23); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochMicroseconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochMicroseconds.js index 0d78d40f4f..f92e3733ff 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochMicroseconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochMicroseconds.js @@ -25,7 +25,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Instant object", () => { expect(() => { Reflect.get(Temporal.Instant.prototype, "epochMicroseconds", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochMilliseconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochMilliseconds.js index 0b176124a7..6eb25828f6 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochMilliseconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochMilliseconds.js @@ -24,7 +24,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Instant object", () => { expect(() => { Reflect.get(Temporal.Instant.prototype, "epochMilliseconds", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochNanoseconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochNanoseconds.js index 28a9f6a0e0..039153a5e4 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochNanoseconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochNanoseconds.js @@ -16,7 +16,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Instant object", () => { expect(() => { Reflect.get(Temporal.Instant.prototype, "epochNanoseconds", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochSeconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochSeconds.js index d36e7cd7d8..90b4ab30bf 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochSeconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.epochSeconds.js @@ -24,7 +24,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Instant object", () => { expect(() => { Reflect.get(Temporal.Instant.prototype, "epochSeconds", "foo"); 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 1e42d6f239..85cc99fc44 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 @@ -7,7 +7,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Instant object", () => { expect(() => { Temporal.Instant.prototype.equals.call("foo", 1, 2); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.round.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.round.js index 20a5b4edbe..aeda521831 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.round.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.round.js @@ -19,7 +19,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.Instant object", () => { expect(() => { Temporal.Instant.prototype.round.call("foo", {}); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.valueOf.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.valueOf.js index 1bffce949b..aa4e0ed9fd 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.valueOf.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.prototype.valueOf.js @@ -1,4 +1,4 @@ -test("errors", () => { +describe("errors", () => { test("throws TypeError", () => { expect(() => { new Temporal.Instant(0n).valueOf(); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.calendar.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.calendar.js index 207fcb55bc..d9e3bc47d3 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.calendar.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.calendar.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDate object", () => { expect(() => { Reflect.get(Temporal.PlainDate.prototype, "calendar", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.day.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.day.js index 3f71be275f..e272dbf4da 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.day.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.day.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDate object", () => { expect(() => { Reflect.get(Temporal.PlainDate.prototype, "day", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.dayOfWeek.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.dayOfWeek.js index 34893e2f36..a2e20cf33c 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.dayOfWeek.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.dayOfWeek.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDate object", () => { expect(() => { Reflect.get(Temporal.PlainDate.prototype, "dayOfWeek", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.dayOfYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.dayOfYear.js index 0704f2b1e4..0a51493eef 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.dayOfYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.dayOfYear.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDate object", () => { expect(() => { Reflect.get(Temporal.PlainDate.prototype, "dayOfYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.daysInMonth.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.daysInMonth.js index 6f4fdf41c7..3c7d03da22 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.daysInMonth.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.daysInMonth.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDate object", () => { expect(() => { Reflect.get(Temporal.PlainDate.prototype, "daysInMonth", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.daysInWeek.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.daysInWeek.js index 10ab3f77e6..ab6417a6c0 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.daysInWeek.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.daysInWeek.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDate object", () => { expect(() => { Reflect.get(Temporal.PlainDate.prototype, "daysInWeek", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.daysInYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.daysInYear.js index c58e7bfa5a..44b92be90b 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.daysInYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.daysInYear.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDate object", () => { expect(() => { Reflect.get(Temporal.PlainDate.prototype, "daysInYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.inLeapYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.inLeapYear.js index a2bf10e58f..63fff82b31 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.inLeapYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.inLeapYear.js @@ -7,7 +7,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDate object", () => { expect(() => { Reflect.get(Temporal.PlainDate.prototype, "inLeapYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.month.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.month.js index 954de91f35..c93461f27a 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.month.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.month.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDate object", () => { expect(() => { Reflect.get(Temporal.PlainDate.prototype, "month", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.monthCode.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.monthCode.js index 62abf3eb49..5e51240cab 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.monthCode.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.monthCode.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDate object", () => { expect(() => { Reflect.get(Temporal.PlainDate.prototype, "monthCode", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.monthsInYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.monthsInYear.js index c29c255dd9..7bf5c09f17 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.monthsInYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.monthsInYear.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDate object", () => { expect(() => { Reflect.get(Temporal.PlainDate.prototype, "monthsInYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.valueOf.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.valueOf.js index 293eb6f907..a3c39118ab 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.valueOf.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.valueOf.js @@ -1,4 +1,4 @@ -test("errors", () => { +describe("errors", () => { test("throws TypeError", () => { expect(() => { new Temporal.PlainDate(2021, 7, 21).valueOf(); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.weekOfYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.weekOfYear.js index f0bdbfb056..8c3e2c6261 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.weekOfYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.weekOfYear.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDate object", () => { expect(() => { Reflect.get(Temporal.PlainDate.prototype, "weekOfYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.year.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.year.js index 4536ab9950..fc69f49afc 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.year.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.year.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDate object", () => { expect(() => { Reflect.get(Temporal.PlainDate.prototype, "year", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.calendar.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.calendar.js index a4291452d2..b8a0bb89c1 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.calendar.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.calendar.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "calendar", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.day.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.day.js index e32edc57a2..d98d1f9f37 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.day.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.day.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "day", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.dayOfWeek.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.dayOfWeek.js index 8ee770a059..efcc0c05d7 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.dayOfWeek.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.dayOfWeek.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "dayOfWeek", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.dayOfYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.dayOfYear.js index fa25768d24..40e667df12 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.dayOfYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.dayOfYear.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "dayOfYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.daysInMonth.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.daysInMonth.js index 6d16b4e150..890df23eb7 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.daysInMonth.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.daysInMonth.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "daysInMonth", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.daysInWeek.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.daysInWeek.js index ff7f9d6d03..e83cfe15e6 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.daysInWeek.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.daysInWeek.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "daysInWeek", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.daysInYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.daysInYear.js index f9bc9371e7..22c1160ae5 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.daysInYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.daysInYear.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "daysInYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.hour.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.hour.js index efadae9aae..a63260f8e1 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.hour.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.hour.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "hour", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.inLeapYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.inLeapYear.js index 30462b3894..bfa5db84e9 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.inLeapYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.inLeapYear.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "inLeapYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.microsecond.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.microsecond.js index 940ef925f6..aa25b245d1 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.microsecond.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.microsecond.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "microsecond", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.millisecond.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.millisecond.js index f74f433655..3a705303be 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.millisecond.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.millisecond.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "millisecond", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.minute.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.minute.js index c8990118c9..1e9ba275ff 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.minute.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.minute.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "minute", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.month.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.month.js index 61932db5d7..82d8a47323 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.month.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.month.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "month", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.monthCode.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.monthCode.js index 74b01c25ad..000d075ef3 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.monthCode.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.monthCode.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "monthCode", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.monthsInYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.monthsInYear.js index 052cbc9e5d..e7cda481eb 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.monthsInYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.monthsInYear.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "monthsInYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.nanosecond.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.nanosecond.js index 029ea7bdd1..75e2d0259e 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.nanosecond.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.nanosecond.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "nanosecond", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.second.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.second.js index e3fb1f6e43..62182078d0 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.second.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.second.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "second", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.valueOf.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.valueOf.js index 48a3812334..ec9daaee50 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.valueOf.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.valueOf.js @@ -1,4 +1,4 @@ -test("errors", () => { +describe("errors", () => { test("throws TypeError", () => { expect(() => { new Temporal.PlainDateTime(2021, 7, 22, 19, 54, 38).valueOf(); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.weekOfYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.weekOfYear.js index 2315bc26fe..8df9278ce7 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.weekOfYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.weekOfYear.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "weekOfYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.year.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.year.js index 631d377909..4507df98bd 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.year.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDateTime/PlainDateTime.prototype.year.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainDateTime object", () => { expect(() => { Reflect.get(Temporal.PlainDateTime.prototype, "year", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.calendar.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.calendar.js index 815f76b566..9d85e7c4c7 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.calendar.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.calendar.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainTime object", () => { expect(() => { Reflect.get(Temporal.PlainTime.prototype, "calendar", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.hour.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.hour.js index 5167777fec..f735a3b8d7 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.hour.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.hour.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainTime object", () => { expect(() => { Reflect.get(Temporal.PlainTime.prototype, "hour", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.microsecond.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.microsecond.js index 4301739e47..cb019f9d5c 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.microsecond.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.microsecond.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainTime object", () => { expect(() => { Reflect.get(Temporal.PlainTime.prototype, "microsecond", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.millisecond.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.millisecond.js index 883c8ef4cc..656669afdb 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.millisecond.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.millisecond.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainTime object", () => { expect(() => { Reflect.get(Temporal.PlainTime.prototype, "millisecond", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.minute.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.minute.js index c9fefd1dfe..62253ff131 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.minute.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.minute.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainTime object", () => { expect(() => { Reflect.get(Temporal.PlainTime.prototype, "minute", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.nanosecond.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.nanosecond.js index 5f9923e27f..62cfc7d0a7 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.nanosecond.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.nanosecond.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainTime object", () => { expect(() => { Reflect.get(Temporal.PlainTime.prototype, "nanosecond", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.second.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.second.js index eab47af61e..db41d6fa51 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.second.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.second.js @@ -5,7 +5,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.PlainTime object", () => { expect(() => { Reflect.get(Temporal.PlainTime.prototype, "second", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.valueOf.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.valueOf.js index 1fe116d3a0..71a1988d10 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.valueOf.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.valueOf.js @@ -1,4 +1,4 @@ -test("errors", () => { +describe("errors", () => { test("throws TypeError", () => { expect(() => { new Temporal.PlainTime(19, 54, 38).valueOf(); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/TimeZone/TimeZone.prototype.getOffsetNanosecondsFor.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/TimeZone/TimeZone.prototype.getOffsetNanosecondsFor.js index 913b5c3ccd..fb190067ea 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/TimeZone/TimeZone.prototype.getOffsetNanosecondsFor.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/TimeZone/TimeZone.prototype.getOffsetNanosecondsFor.js @@ -16,7 +16,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.TimeZone object", () => { expect(() => { Temporal.TimeZone.prototype.getOffsetNanosecondsFor.call("foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/TimeZone/TimeZone.prototype.getOffsetStringFor.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/TimeZone/TimeZone.prototype.getOffsetStringFor.js index e6250cfeee..27ad3ab11e 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/TimeZone/TimeZone.prototype.getOffsetStringFor.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/TimeZone/TimeZone.prototype.getOffsetStringFor.js @@ -16,7 +16,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.TimeZone object", () => { expect(() => { Temporal.TimeZone.prototype.getOffsetStringFor.call("foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/TimeZone/TimeZone.prototype.toString.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/TimeZone/TimeZone.prototype.toString.js index 64b07f6d17..a82f0beb49 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/TimeZone/TimeZone.prototype.toString.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/TimeZone/TimeZone.prototype.toString.js @@ -9,7 +9,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.TimeZone object", () => { expect(() => { Temporal.TimeZone.prototype.toString.call("foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.calendar.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.calendar.js index b8655eb7d9..1b3dcf4eec 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.calendar.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.calendar.js @@ -7,7 +7,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "calendar", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.day.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.day.js index baa0150d8d..4cb6fa0c0b 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.day.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.day.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "day", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.dayOfWeek.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.dayOfWeek.js index 4c6f958bcd..239e9ba1f5 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.dayOfWeek.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.dayOfWeek.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "dayOfWeek", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.dayOfYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.dayOfYear.js index 59bf2b094c..d7ec8391eb 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.dayOfYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.dayOfYear.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "dayOfYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.daysInMonth.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.daysInMonth.js index b3ea2f1a73..3f70013104 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.daysInMonth.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.daysInMonth.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "daysInMonth", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.daysInWeek.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.daysInWeek.js index e9bae2caf1..3e45acaf1f 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.daysInWeek.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.daysInWeek.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "daysInWeek", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.daysInYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.daysInYear.js index 65d095eb23..3a1da70b05 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.daysInYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.daysInYear.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "daysInYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochMicroseconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochMicroseconds.js index 43a95196ab..c64c994b48 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochMicroseconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochMicroseconds.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "epochMicroseconds", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochMilliseconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochMilliseconds.js index d30669522e..5653638f80 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochMilliseconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochMilliseconds.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "epochMilliseconds", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochNanoseconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochNanoseconds.js index 83336f7625..185d07d647 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochNanoseconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochNanoseconds.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "epochNanoseconds", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochSeconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochSeconds.js index 286f0cf139..a5167b71de 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochSeconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.epochSeconds.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "epochSeconds", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.getISOFields.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.getISOFields.js index ae6e5411ce..bce2593455 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.getISOFields.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.getISOFields.js @@ -40,7 +40,7 @@ describe("normal behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Temporal.ZonedDateTime.prototype.getISOFields.call("foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.hour.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.hour.js index 8f287159d1..536f856669 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.hour.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.hour.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "hour", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.inLeapYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.inLeapYear.js index 737d1884f2..a5dd6c2f69 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.inLeapYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.inLeapYear.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "inLeapYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.microsecond.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.microsecond.js index 4d4f0a0cac..6f45616d4c 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.microsecond.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.microsecond.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "microsecond", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.millisecond.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.millisecond.js index d8c2df3f42..03f9ddcd9f 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.millisecond.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.millisecond.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "millisecond", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.minute.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.minute.js index 146b49dcb6..99360ce296 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.minute.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.minute.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "minute", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.month.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.month.js index 5c73906f30..042493e29b 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.month.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.month.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "month", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.monthCode.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.monthCode.js index 223cc3d157..e96e5189e2 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.monthCode.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.monthCode.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "monthCode", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.monthsInYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.monthsInYear.js index e40dad1ad4..15a0980beb 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.monthsInYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.monthsInYear.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "monthsInYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.nanosecond.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.nanosecond.js index a3c83066de..1e6745cab2 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.nanosecond.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.nanosecond.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "nanosecond", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.offset.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.offset.js index 91c6b366d0..2c2a826e30 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.offset.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.offset.js @@ -12,7 +12,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "offset", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.offsetNanoseconds.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.offsetNanoseconds.js index 41b14995e4..6ac6db40f5 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.offsetNanoseconds.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.offsetNanoseconds.js @@ -12,7 +12,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "offsetNanoseconds", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.second.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.second.js index bea10c034b..d0a13e8414 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.second.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.second.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "second", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.timeZone.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.timeZone.js index e231bf96ce..7de20724a3 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.timeZone.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.timeZone.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "timeZone", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toInstant.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toInstant.js index 101d4e7fda..98e62eba52 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toInstant.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toInstant.js @@ -12,7 +12,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Temporal.ZonedDateTime.prototype.toInstant.call("foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toPlainDate.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toPlainDate.js index 9c5bbeb809..e5babceb47 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toPlainDate.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toPlainDate.js @@ -14,7 +14,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Temporal.ZonedDateTime.prototype.toPlainDate.call("foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toPlainDateTime.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toPlainDateTime.js index 36671a784e..71407ef04f 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toPlainDateTime.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toPlainDateTime.js @@ -20,7 +20,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Temporal.ZonedDateTime.prototype.toPlainDateTime.call("foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toPlainTime.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toPlainTime.js index 7a5eb4c558..e6ba21a815 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toPlainTime.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.toPlainTime.js @@ -17,7 +17,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Temporal.ZonedDateTime.prototype.toPlainTime.call("foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.valueOf.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.valueOf.js index bf65a5b641..c8ecd17de1 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.valueOf.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.valueOf.js @@ -1,4 +1,4 @@ -test("errors", () => { +describe("errors", () => { test("throws TypeError", () => { const timeZone = new Temporal.TimeZone("UTC"); expect(() => { diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.weekOfYear.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.weekOfYear.js index 2dedc4734a..fc715ea7f5 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.weekOfYear.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.weekOfYear.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "weekOfYear", "foo"); diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.year.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.year.js index 9017e0b652..e97e210123 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.year.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/ZonedDateTime/ZonedDateTime.prototype.year.js @@ -6,7 +6,7 @@ describe("correct behavior", () => { }); }); -test("errors", () => { +describe("errors", () => { test("this value must be a Temporal.ZonedDateTime object", () => { expect(() => { Reflect.get(Temporal.ZonedDateTime.prototype, "year", "foo");