1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:07:34 +00:00

LibJS: Implement Temporal.PlainDate.prototype[@@toStringTag]

This commit is contained in:
Idan Horowitz 2021-07-19 00:30:58 +03:00 committed by Linus Groh
parent cc00ccec41
commit 94e1324a67
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,3 @@
test("basic functionality", () => {
expect(Temporal.PlainDate.prototype[Symbol.toStringTag]).toBe("Temporal.PlainDate");
});