mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 15:25:08 +00:00
5 lines
159 B
JavaScript
5 lines
159 B
JavaScript
test("basic functionality", () => {
|
|
expect(Date).toHaveLength(7);
|
|
expect(Date.name === "Date");
|
|
expect(Date.prototype).not.toHaveProperty("length");
|
|
});
|