如果你的代码里有一段是这样的:
// 是否支持touch事件
export const SUPPORT_TOUCH = ('ontouchstart' in window);
因为默认jest集成的jsdom的window上是没有ontouchstart属性的, 所以我们需要自己加一个:
// jest.config.js
module.exports = {
...
globals: {
ontouchstart: null
}
};