Untitled
unknown
plain_text
a year ago
295 B
10
Indexable
it("test", async () => {
const fakeDate = new Date("2023-04-22");
console.log("Normal: ", new Date().getTime());
const spy = jest.spyOn(global, "Date").mockImplementation(() => fakeDate);
console.log("Mocked: ", new Date().getTime());
});Editor is loading...
Leave a Comment