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

LibJS: Implement Iterator.prototype [ @@toStringTag ]

This commit is contained in:
Timothy Flynn 2023-06-24 17:01:57 -04:00 committed by Andreas Kling
parent d9d245faa7
commit 7ff6b472c0
2 changed files with 7 additions and 0 deletions

View file

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