作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些使用 HTML Drag interface 的 React 组件.
特别是我听dragover
一个组件上的事件并使用 DataTransfer 设置 x 和 y 位置目的。然后,我听dragleave
不同组件上的事件并从 DataTransfer 检索 x 和 y 位置。
我正在使用 Jest 和 Enzyme 来测试我的组件。
如果我运行测试,我会收到此错误:
Test suite failed to run
ReferenceError: DataTransfer is not defined
DataTransfer
在我的
jest.config.js
并使其成为全局性的,但我不确定这是否是最佳解决方案。
class DataTransfer {
constructor() {
this.data = { dragX: "", dragY: "" };
this.dropEffect = "none";
this.effectAllowed = "all";
this.files = [];
this.img = "";
this.items = [];
this.types = [];
this.xOffset = 0;
this.yOffset = 0;
}
clearData() {
this.data = {};
}
getData(format) {
return this.data[format];
}
setData(format, data) {
this.data[format] = data;
}
setDragImage(img, xOffset, yOffset) {
this.img = img;
this.xOffset = xOffset;
this.yOffset = yOffset;
}
}
const baseConfig = {
globals: {
DataTransfer: DataTransfer,
},
// other config...
};
module.exports = baseConfig;
最佳答案
我正在使用以下自定义模型:
// Arrange
// Map as storage place
const testStorage = new Map();
// Mock of the drop Event
const testEvent = {
dataTransfer: {
setData: (key, value) => testStorage.set(key, value),
getData: (key) => testStorage.get(key)
}
};
// remmeber to have 'and.callTrough()' to allow go trough the method
spyOn(testEvent.dataTransfer, 'getData').and.callThrough();
// Act
// Add your code here
// Assert
expect(testEvent.dataTransfer.getData('YOUR_CHECKED_KEY')).toEqual('EXCPECTED_VALUE');
关于javascript - 如何用 Jest 模拟 DataTransfer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54864280/
我是一名优秀的程序员,十分优秀!