1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 18:54:57 +00:00
serenity/Userland/Libraries/LibJS/Tests/builtins/String/String.js
2021-01-12 12:17:46 +01:00

9 lines
239 B
JavaScript

test("constructor properties", () => {
expect(String).toHaveLength(1);
expect(String.name).toBe("String");
});
test("typeof", () => {
expect(typeof String()).toBe("string");
expect(typeof new String()).toBe("object");
});