我正在尝试运行第一个Jest测试,但收到此错误
FAIL src\containers\__test__\AppContainer.spec.js
● Test suite failed to run
ReferenceError: sessionStorage is not defined
我不确定我是否应该得到这个错误,因为我没有测试sessionStorage,只是想测试根容器。
- 更新-
import React from 'react'
import { shallow } from 'enzyme'
import AppContainer from '../AppContainer'
//Tried here also
global.sessionStorage = {
data: {},
setItem: (key, value) => {
this.data[key] = value
},
getItem: (key) => this.data[key]
}
describe('AppContainer', () => {
beforeEach(function () {
global.sessionStorage = {
data: {},
setItem: (key, value) => {
this.data[key] = value
},
getItem: (key) => this.data[key]
}
})
it('should render self and subcomponents', () => {
const enzymeWrapper = shallow(<AppContainer />)
expect(enzymeWrapper.find('div').hasClass('grommetux-app')).toBe(true)
})
})
--
ReferenceError: sessionStorage is not defined
at Function.r.get (node_modules\oidc-client\lib\oidc-client.min.js:1:13009)
at new e (node_modules\oidc-client\lib\oidc-client.min.js:74:15382)
at new e (node_modules\oidc-client\lib\oidc-client.min.js:74:5255)
at n (node_modules\redux-oidc\dist\redux-oidc.js:1:1853)
**at Object.<anonymous> (src\utils\userManager.js:23:127)**
at Object.<anonymous> (src\containers\AppContainer.js:9:46)
at Object.<anonymous> (src\containers\__test__\AppContainer.spec.js:3:47)
at process._tickCallback (internal\process\next_tick.js:103:7)
我是通过库oidc-clientjs“使用”sessionStorage的,所以我确实无法控制它。
第23行指出它是错误的来源
import { createUserManager } from 'redux-oidc'
....
const userManager = createUserManager(config) (L23)
2条答案
按热度按时间qvtsj1bj1#
我使用的是Create-react-app,因此我将其添加到src/setupTests.js中
lo8azlld2#
最简单的方法是模拟
redux-oidc
,有两种方法。您需要
createUserManager
在某些测试中表现不同:createUserManager
在某些测试中执行相同的操作: