sinon - 不存在的Stubbing函数

时间:2015-12-03 22:04:59

标签: javascript sinon jsdom

此代码如何产生Attempted to wrap undefined property MouseEvent as function

            window.MouseEvent = function() {};
            sinon.stub(window, 'MouseEvent', function() {
                console.log('CALLED MOUSE EVENT!');
                return {
                    _type: 'click',
                };
            });

我试图使用过时的jsdom版本,如果有人偶然找到了一条更好的道路的线索。

0 个答案:

没有答案