redux-form
Version:
A higher order component decorator for forms using Redux and React
93 lines (88 loc) • 2.2 kB
JavaScript
import { setSubmitFailed } from '../actions';
var describeSetSubmitFailed = function describeSetSubmitFailed(reducer, expect, _ref) {
var fromJS = _ref.fromJS;
return function () {
it('should set submitFailed flag on submitFailed', function () {
var state = reducer(fromJS({
foo: {
doesnt: 'matter',
should: 'notchange'
}
}), setSubmitFailed('foo'));
expect(state).toEqualMap({
foo: {
doesnt: 'matter',
should: 'notchange',
submitFailed: true
}
});
});
it('should clear submitting flag on submitFailed', function () {
var state = reducer(fromJS({
foo: {
doesnt: 'matter',
should: 'notchange',
submitting: true
}
}), setSubmitFailed('foo'));
expect(state).toEqualMap({
foo: {
doesnt: 'matter',
should: 'notchange',
submitFailed: true
}
});
});
it('should clear submitSucceeded flag on submitFailed', function () {
var state = reducer(fromJS({
foo: {
doesnt: 'matter',
should: 'notchange',
submitting: true,
submitSucceeded: true
}
}), setSubmitFailed('foo'));
expect(state).toEqualMap({
foo: {
doesnt: 'matter',
should: 'notchange',
submitFailed: true
}
});
});
it('should mark fields provided as touched', function () {
var state = reducer(fromJS({
foo: {
values: {
a: 'aVal',
b: 42,
c: true
}
}
}), setSubmitFailed('foo', 'a', 'b', 'c'));
expect(state).toEqualMap({
foo: {
values: {
a: 'aVal',
b: 42,
c: true
},
fields: {
a: {
touched: true
},
b: {
touched: true
},
c: {
touched: true
}
},
anyTouched: true,
submitFailed: true
}
});
});
};
};
export default describeSetSubmitFailed;