(inputComponent)
| 24 | } |
| 25 | |
| 26 | export function wrapVModel(inputComponent) { |
| 27 | inputComponent.vm.$on('input', function (value) { |
| 28 | inputComponent.setProps({value}); |
| 29 | }); |
| 30 | inputComponent.vm.$on('error', error => inputComponent.currentError = error); |
| 31 | } |
| 32 | |
| 33 | export function setDeepProp(wrapper, key, value) { |
| 34 | const keys = key.split('.'); |
no outgoing calls
no test coverage detected