我正在使用摩卡咖啡和酶来测试我的反应成分。我对反应组件中的全局范围(localStorage)有疑问。
Foo.js
import React, { PropTypes } from 'react';
const propTypes = {};
const defaultProps = {};
class Foo extends React.Component {
constructor(props) {
super(props);
}
render() {
localStorage.setItem("lastname", "Smith");
return (
<div className="foo"></div>
);
}
}
Foo.propTypes = propTypes;
Foo.defaultProps = defaultProps;
export default Foo;
下面是 Foo 组件的单元测试代码。
import React from 'react';
import { expect } from 'chai';
import { shallow, mount, render } from 'enzyme';
import Foo from '../src/Foo';
describe("A suite", function() {
it("contains spec with an expectation", function() {
expect(shallow(<Foo />).is('.foo')).to.equal(true);
});
it("contains spec with an expectation", function() {
expect(mount(<Foo />).find('.foo').length).to.equal(1);
});
});
当我运行测试时,我收到以下错误。
ReferenceError: localStorage 未定义
当像 localStorage 这样的全局对象存在组件渲染方法时,似乎会发生此错误。
有什么解决办法吗??