静态构建故事书时,使用rewiremock
的故事会崩溃。
重现行为的步骤:
rewiremock
rewiremock('./helpers/sessionHistory')
.callThrough()
.with({
getLastSession: () => ({
email: 'mocked-mail',
name: 'mockedName',
}),
})
.toBeUsed(); // always check was the mock used, or not.
答案 0 :(得分:0)
在这里已解决(https://github.com/theKashey/rewiremock/issues/89)
嗨, 我添加了HMR插件,并且错误仍然存在,但是随后我将开发模式强制设置为webpack配置(默认情况下,该版本使用prod进行构建)并且有效。