redux-form-validators
Version:
Simple validations with redux-form / react-final-form
27 lines (22 loc) • 570 B
JavaScript
import Validators from '../index'
global.ValidatorsFormatMessage = Validators.formatMessage
Validators.formatMessage = function (msg) {
return msg
}
global.FileList = function (params) {
params = params || { length: 0 }
Object.assign(this, params)
this.length = params.length
}
global.File = function (params) {
Object.assign(this, params)
}
console.__lastErrors = []
console.error = function () {
console.__lastErrors.push(arguments)
console.__lastErrorIncludes = txt =>
[].slice
.call(arguments)
.join(' ')
.indexOf(txt) >= 0
}