@@ -55,4 +55,71 @@ describe('Global config', () => {
55
55
Vue . config . ignoredElements = [ ]
56
56
} )
57
57
} )
58
+
59
+ describe ( 'async' , ( ) => {
60
+ it ( 'does not update synchronously when true' , ( ) => {
61
+ const spy = jasmine . createSpy ( )
62
+ const vm = new Vue ( {
63
+ template : `<div :class="value"></div>` ,
64
+ updated : spy ,
65
+ data : { value : true }
66
+ } ) . $mount ( )
67
+ vm . value = false
68
+ expect ( spy ) . not . toHaveBeenCalled ( )
69
+ } )
70
+
71
+ it ( 'updates synchronously when false' , ( ) => {
72
+ const spy = jasmine . createSpy ( )
73
+ Vue . config . async = false
74
+ const vm = new Vue ( {
75
+ template : `<div :class="value"></div>` ,
76
+ updated : spy ,
77
+ data : { value : true }
78
+ } ) . $mount ( )
79
+ vm . value = false
80
+ expect ( spy ) . toHaveBeenCalled ( )
81
+ Vue . config . async = true
82
+ } )
83
+
84
+ it ( 'runs watchers in correct order when false' , ( ) => {
85
+ Vue . config . async = false
86
+ const vm = new Vue ( {
87
+ template : `
88
+ <div id="app">
89
+ {{ computed }}
90
+ </div>` ,
91
+ props : [ 'prop' ] ,
92
+ propsData : {
93
+ 'prop' : [ ]
94
+ } ,
95
+ data : ( ) => ( {
96
+ data : ''
97
+ } ) ,
98
+ computed : {
99
+ computed ( ) {
100
+ return this . prop . join ( ',' )
101
+ }
102
+ } ,
103
+ watch : {
104
+ prop : 'execute'
105
+ } ,
106
+ methods : {
107
+ execute ( ) {
108
+ this . data = this . computed
109
+ }
110
+ }
111
+ } ) . $mount ( )
112
+ expect ( vm . computed ) . toBe ( '' )
113
+ expect ( vm . data ) . toBe ( '' )
114
+
115
+ vm . prop = [ 1 , 2 , 3 ]
116
+ expect ( vm . computed ) . toBe ( '1,2,3' )
117
+ expect ( vm . data ) . toBe ( '1,2,3' )
118
+
119
+ vm . prop . push ( 4 , 5 )
120
+ expect ( vm . computed ) . toBe ( '1,2,3,4,5' )
121
+ expect ( vm . data ) . toBe ( '1,2,3,4,5' )
122
+ Vue . config . async = true
123
+ } )
124
+ } )
58
125
} )
0 commit comments