1
- import { watch , reactive , computed , nextTick , ref , h } from '../src/index'
1
+ import {
2
+ watch ,
3
+ watchEffect ,
4
+ reactive ,
5
+ computed ,
6
+ nextTick ,
7
+ ref ,
8
+ h
9
+ } from '../src/index'
2
10
import { render , nodeOps , serializeInner } from '@vue/runtime-test'
3
11
import {
4
12
ITERATE_KEY ,
@@ -13,10 +21,10 @@ import { mockWarn } from '@vue/shared'
13
21
describe ( 'api: watch' , ( ) => {
14
22
mockWarn ( )
15
23
16
- it ( 'watch( effect) ' , async ( ) => {
24
+ it ( 'effect' , async ( ) => {
17
25
const state = reactive ( { count : 0 } )
18
26
let dummy
19
- watch ( ( ) => {
27
+ watchEffect ( ( ) => {
20
28
dummy = state . count
21
29
} )
22
30
expect ( dummy ) . toBe ( 0 )
@@ -117,10 +125,10 @@ describe('api: watch', () => {
117
125
expect ( dummy ) . toMatchObject ( [ [ 2 , true ] , [ 1 , false ] ] )
118
126
} )
119
127
120
- it ( 'stopping the watcher' , async ( ) => {
128
+ it ( 'stopping the watcher (effect) ' , async ( ) => {
121
129
const state = reactive ( { count : 0 } )
122
130
let dummy
123
- const stop = watch ( ( ) => {
131
+ const stop = watchEffect ( ( ) => {
124
132
dummy = state . count
125
133
} )
126
134
expect ( dummy ) . toBe ( 0 )
@@ -132,11 +140,32 @@ describe('api: watch', () => {
132
140
expect ( dummy ) . toBe ( 0 )
133
141
} )
134
142
143
+ it ( 'stopping the watcher (with source)' , async ( ) => {
144
+ const state = reactive ( { count : 0 } )
145
+ let dummy
146
+ const stop = watch (
147
+ ( ) => state . count ,
148
+ count => {
149
+ dummy = count
150
+ }
151
+ )
152
+
153
+ state . count ++
154
+ await nextTick ( )
155
+ expect ( dummy ) . toBe ( 1 )
156
+
157
+ stop ( )
158
+ state . count ++
159
+ await nextTick ( )
160
+ // should not update
161
+ expect ( dummy ) . toBe ( 1 )
162
+ } )
163
+
135
164
it ( 'cleanup registration (effect)' , async ( ) => {
136
165
const state = reactive ( { count : 0 } )
137
166
const cleanup = jest . fn ( )
138
167
let dummy
139
- const stop = watch ( onCleanup => {
168
+ const stop = watchEffect ( onCleanup => {
140
169
onCleanup ( cleanup )
141
170
dummy = state . count
142
171
} )
@@ -187,7 +216,7 @@ describe('api: watch', () => {
187
216
188
217
const Comp = {
189
218
setup ( ) {
190
- watch ( ( ) => {
219
+ watchEffect ( ( ) => {
191
220
assertion ( count . value )
192
221
} )
193
222
return ( ) => count . value
@@ -221,7 +250,7 @@ describe('api: watch', () => {
221
250
222
251
const Comp = {
223
252
setup ( ) {
224
- watch (
253
+ watchEffect (
225
254
( ) => {
226
255
assertion ( count . value , count2 . value )
227
256
} ,
@@ -263,7 +292,7 @@ describe('api: watch', () => {
263
292
264
293
const Comp = {
265
294
setup ( ) {
266
- watch (
295
+ watchEffect (
267
296
( ) => {
268
297
assertion ( count . value )
269
298
} ,
@@ -363,14 +392,14 @@ describe('api: watch', () => {
363
392
expect ( spy ) . toHaveBeenCalledTimes ( 3 )
364
393
} )
365
394
366
- it ( 'warn immediate option when using effect signature ' , async ( ) => {
395
+ it ( 'warn immediate option when using effect' , async ( ) => {
367
396
const count = ref ( 0 )
368
397
let dummy
369
- // @ts -ignore
370
- watch (
398
+ watchEffect (
371
399
( ) => {
372
400
dummy = count . value
373
401
} ,
402
+ // @ts -ignore
374
403
{ immediate : false }
375
404
)
376
405
expect ( dummy ) . toBe ( 0 )
@@ -388,7 +417,7 @@ describe('api: watch', () => {
388
417
events . push ( e )
389
418
} )
390
419
const obj = reactive ( { foo : 1 , bar : 2 } )
391
- watch (
420
+ watchEffect (
392
421
( ) => {
393
422
dummy = [ obj . foo , 'bar' in obj , Object . keys ( obj ) ]
394
423
} ,
@@ -423,7 +452,7 @@ describe('api: watch', () => {
423
452
events . push ( e )
424
453
} )
425
454
const obj = reactive ( { foo : 1 } )
426
- watch (
455
+ watchEffect (
427
456
( ) => {
428
457
dummy = obj . foo
429
458
} ,
0 commit comments