1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:57:44 +00:00

LibJS: Implement Temporal.PlainMonthDay.prototype.toPlainDate()

This commit is contained in:
Linus Groh 2021-10-11 08:18:58 +01:00
parent 2c222ba40b
commit f0281ec19d
3 changed files with 91 additions and 0 deletions

View file

@ -0,0 +1,27 @@
describe("normal behavior", () => {
test("length is 1", () => {
expect(Temporal.PlainMonthDay.prototype.toPlainDate).toHaveLength(1);
});
test("basic functionality", () => {
const plainMonthDay = new Temporal.PlainMonthDay(7, 6);
const plainDate = plainMonthDay.toPlainDate({ year: 2021 });
expect(plainDate.equals(new Temporal.PlainDate(2021, 7, 6))).toBeTrue();
});
});
describe("errors", () => {
test("argument must be an object", () => {
const plainMonthDay = new Temporal.PlainMonthDay(7, 6);
expect(() => {
plainMonthDay.toPlainDate(42);
}).toThrowWithMessage(TypeError, "42 is not an object");
});
test("year field is required", () => {
const plainMonthDay = new Temporal.PlainMonthDay(7, 6);
expect(() => {
plainMonthDay.toPlainDate({});
}).toThrowWithMessage(TypeError, "Required property year is missing or undefined");
});
});