mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-13 19:25:28 +00:00
6 lines
165 B
JavaScript
6 lines
165 B
JavaScript
test("basic functionality", () => {
|
|
expect(Date).toHaveLength(7);
|
|
expect(Date.name === "Date");
|
|
expect(Date.prototype).not.toHaveProperty("length");
|
|
});
|