📜  由于新日期,快照一直失败 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:44.458000             🧑  作者: Mango

代码示例1
beforeEach(() => {
    jest.spyOn(Date.prototype, 'getDay').mockReturnValue(2);
    jest.spyOn(Date.prototype, 'toISOString').mockReturnValue('2000-01-01T00:00:00.000Z');
});

afterEach(() => {
    jest.restoreAll()
});