我正在尝试测试一个简单的减速器,它的日期属性设置为今天。
const today = new Date();
export const initialState = {
today
};
console.log(new Date().toDateString()); // <--- real date
export default function globalReducer(state = initialState, action) {
console.log(new Date().toDateString()); // <--- mocked date
switch (action.type) {
default:
return state;
}
}
我的基本测试
import globalReducer from "./reducer";
describe("Global reducer", () => {
beforeAll(() => {
jest.useFakeTimers("modern");
jest.setSystemTime(new Date("2021-02-18"));
});
afterAll(() => {
jest.useRealTimers();
});
it("should return the mocked date", () => {
expect(globalReducer(undefined, {}).today).toEqual(new Date('2021-02-18'));
});
});
我注意到,mock 只在reducer 代码中起作用,但今天在其全局范围内总是返回真实日期而不是模拟日期。
如果我setSystemTime
在测试设置文件中调用,则today
正确模拟。
我在这里错过了什么吗?仅针对特定测试在全局范围内模拟日期的方法是什么?
如果您想查看https://github.com/dariospadoni/jestFakeTimersMock,这里有一个测试仓库