当前位置:  开发笔记 > 编程语言 > 正文

Redux如何在单元测试中更新商店?

如何解决《Redux如何在单元测试中更新商店?》经验,为你挑选了1个好方法。



1> Lucas..:

configureMockStore是一个工厂,用于通过应用中间件来配置模拟存储.返回mockStore对象.
mockStore返回已配置的模拟存储的实例.它不会通过行动改变国家.只是通过行动传递记录.背后的原因是因为它是一个实用工具来创建单元测试,而不是"集成"(状态+组件)测试.

尽管如此,您可以模拟状态变化.mockStore接受一个函数,所以你可以做以下事情:

import configureMockStore from 'redux-mock-store';

const middlewares = [];
const mockStore = configureMockStore(middlewares);

let state = {
  players: {
    'audio-player-1': { paused: false }
  }
};

const store = mockStore(() => state);

然后在测试中,您可以:

state = NEW_STATE;

// now you need to make the components update the state.
// so you can dispatch any action so the mock store will notify the subscribers
store.dispatch({ type: 'ANY_ACTION' }); 

推荐阅读
jerry613
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有