我正在使用chai-immutable
npm 模块进行测试。这是测试:
it("runs the test", () => {
const initialState = Map();
const entries = ["entry"];
const nextState = setEntries(initialState, entries);
expect(nextState).to.equal(fromJS({
entries : ["entry"]
}));
});
这是setEntries
功能
export function setEntries(state, entries) {
return state.set("entries", List(entries));
}
这是什么ownerID
?如何解决问题?
编辑:
我从头开始创建并重写了整个文件并且它工作正常。它与前一个文件完全相同。
仍然对它发生的原因感兴趣....