1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 14:25:08 +00:00
serenity/Libraries/LibJS/Tests/builtins/Date/Date.js
2020-07-06 23:40:35 +02:00

5 lines
165 B
JavaScript

test("basic functionality", () => {
expect(Date).toHaveLength(7);
expect(Date.name === "Date");
expect(Date.prototype).not.toHaveProperty("length");
});