remove wrong test

This commit is contained in:
Maren Süwer
2018-11-05 13:46:59 +01:00
parent 7d149608f6
commit c4d57b1ce8

View File

@@ -444,20 +444,6 @@ describe("users reducer", () => {
expect(newState.byNames["ford"]).toBe(userFord);
expect(newState.list.entries).toEqual(["zaphod"]);
});
it("should update state according to MODIFY_USER_SUCCESS action", () => {
const newState = reducer(
{
byNames: {
ford: {
name: "ford"
}
}
},
modifyUserSuccess(userFord)
);
expect(newState.byNames["ford"]).toBe(userFord);
});
});
describe("selector tests", () => {