describe("signUp reducer", () => {
    it("should return the initial state", () => expect(reducer(undefined, {})).toEqual(initialState));
    describe("for the signUpRoutine", () => behavesLikeReducerWithPayload(reducer, signUpRoutine, { isRegistered: true }, { isRegistered: false }));
});