File tree 4 files changed +13
-3
lines changed
4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change
1
+ import InputNumber from '..'
2
+ import focusTest from '../../../tests/shared/focusTest'
3
+
4
+ focusTest ( InputNumber )
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export const InputNumberProps = {
25
25
name : PropTypes . string ,
26
26
id : PropTypes . string ,
27
27
precision : PropTypes . number ,
28
+ autoFocus : PropTypes . bool ,
28
29
}
29
30
30
31
export default {
Original file line number Diff line number Diff line change @@ -105,6 +105,9 @@ export default {
105
105
} ,
106
106
mounted ( ) {
107
107
this . $nextTick ( ( ) => {
108
+ if ( this . autoFocus && ! this . disabled ) {
109
+ this . focus ( )
110
+ }
108
111
this . updatedFunc ( )
109
112
} )
110
113
} ,
@@ -571,7 +574,6 @@ export default {
571
574
onBlur = { this . onBlur }
572
575
onKeydown = { editable ? this . onKeyDown : noop }
573
576
onKeyup = { editable ? this . onKeyUp : noop }
574
- autoFocus = { this . autoFocus }
575
577
maxLength = { this . maxLength }
576
578
readOnly = { this . readOnly }
577
579
disabled = { this . disabled }
Original file line number Diff line number Diff line change 1
1
import { mount } from '@vue/test-utils'
2
+ import { asyncExpect } from '../utils'
2
3
3
4
export default function focusTest ( Component ) {
4
5
describe ( 'focus and blur' , ( ) => {
@@ -22,7 +23,7 @@ export default function focusTest (Component) {
22
23
expect ( handleFocus ) . toBeCalled ( )
23
24
} )
24
25
25
- it ( 'blur() and onBlur' , ( ) => {
26
+ it ( 'blur() and onBlur' , async ( ) => {
26
27
const handleBlur = jest . fn ( )
27
28
const wrapper = mount ( {
28
29
render ( h ) {
@@ -32,7 +33,9 @@ export default function focusTest (Component) {
32
33
wrapper . vm . $refs . component . focus ( )
33
34
wrapper . vm . $refs . component . blur ( )
34
35
jest . runAllTimers ( )
35
- expect ( handleBlur ) . toBeCalled ( )
36
+ await asyncExpect ( ( ) => {
37
+ expect ( handleBlur ) . toBeCalled ( )
38
+ } )
36
39
} )
37
40
38
41
it ( 'autoFocus' , ( done ) => {
You can’t perform that action at this time.
0 commit comments