1
1
const Vue = require ( 'vue/dist/vue.common.js' ) ;
2
- const { ref, computed, createElement : h , provide, inject } = require ( '../src' ) ;
2
+ const { ref, computed, createElement : h , provide, inject, toRefs } = require ( '../src' ) ;
3
3
4
4
describe ( 'setup' , ( ) => {
5
5
beforeEach ( ( ) => {
@@ -51,7 +51,7 @@ describe('setup', () => {
51
51
expect ( vm . b ) . toBe ( 1 ) ;
52
52
} ) ;
53
53
54
- it ( 'should work with `methods` and `data` options' , done => {
54
+ it ( 'should work with `methods` and `data` options' , ( done ) => {
55
55
let calls = 0 ;
56
56
const vm = new Vue ( {
57
57
template : `<div>{{a}}{{b}}{{c}}</div>` ,
@@ -215,7 +215,7 @@ describe('setup', () => {
215
215
expect ( vm . $refs . test . b ) . toBe ( 1 ) ;
216
216
} ) ;
217
217
218
- it ( 'props should not be reactive' , done => {
218
+ it ( 'props should not be reactive' , ( done ) => {
219
219
let calls = 0 ;
220
220
const vm = new Vue ( {
221
221
template : `<child :msg="msg"></child>` ,
@@ -247,6 +247,43 @@ describe('setup', () => {
247
247
} ) . then ( done ) ;
248
248
} ) ;
249
249
250
+ it ( 'toRefs(props) should not warn' , async ( ) => {
251
+ let a ;
252
+
253
+ const child = {
254
+ template : `<div/>` ,
255
+
256
+ props : {
257
+ r : Number ,
258
+ } ,
259
+ setup ( props ) {
260
+ a = toRefs ( props ) . r ;
261
+ } ,
262
+ } ;
263
+
264
+ const vm = new Vue ( {
265
+ template : `<child :r="r"/>` ,
266
+ components : {
267
+ child,
268
+ } ,
269
+
270
+ data ( ) {
271
+ return {
272
+ r : 1 ,
273
+ } ;
274
+ } ,
275
+ } ) . $mount ( ) ;
276
+
277
+ expect ( a . value ) . toBe ( 1 ) ;
278
+ vm . r = 3 ;
279
+
280
+ await Vue . nextTick ( ) ;
281
+
282
+ expect ( a . value ) . toBe ( 3 ) ;
283
+
284
+ expect ( warn ) . not . toHaveBeenCalled ( ) ;
285
+ } ) ;
286
+
250
287
it ( 'this should be undefined' , ( ) => {
251
288
const vm = new Vue ( {
252
289
template : '<div></div>' ,
@@ -256,7 +293,7 @@ describe('setup', () => {
256
293
} ) . $mount ( ) ;
257
294
} ) ;
258
295
259
- it ( 'should not make returned non-reactive object reactive' , done => {
296
+ it ( 'should not make returned non-reactive object reactive' , ( done ) => {
260
297
const vm = new Vue ( {
261
298
setup ( ) {
262
299
return {
@@ -285,8 +322,8 @@ describe('setup', () => {
285
322
} ) ;
286
323
287
324
it ( "should put a unenumerable '__ob__' for non-reactive object" , ( ) => {
288
- const clone = obj => JSON . parse ( JSON . stringify ( obj ) ) ;
289
- const componentSetup = jest . fn ( props => {
325
+ const clone = ( obj ) => JSON . parse ( JSON . stringify ( obj ) ) ;
326
+ const componentSetup = jest . fn ( ( props ) => {
290
327
const internalOptions = clone ( props . options ) ;
291
328
return { internalOptions } ;
292
329
} ) ;
@@ -329,7 +366,7 @@ describe('setup', () => {
329
366
name : 'child' ,
330
367
props : [ 'msg' ] ,
331
368
setup ( ) {
332
- return props => {
369
+ return ( props ) => {
333
370
p = props ;
334
371
return null ;
335
372
} ;
@@ -340,7 +377,7 @@ describe('setup', () => {
340
377
expect ( p ) . toBe ( undefined ) ;
341
378
} ) ;
342
379
343
- it ( 'inline render function should work' , done => {
380
+ it ( 'inline render function should work' , ( done ) => {
344
381
// let createElement;
345
382
const vm = new Vue ( {
346
383
props : [ 'msg' ] ,
@@ -383,44 +420,44 @@ describe('setup', () => {
383
420
} ) ;
384
421
385
422
describe ( 'Methods' , ( ) => {
386
- it ( 'binds methods when calling with parenthesis' , async ( ) => {
423
+ it ( 'binds methods when calling with parenthesis' , async ( ) => {
387
424
let context = null ;
388
- const contextFunction = jest . fn ( function ( ) {
389
- context = this
425
+ const contextFunction = jest . fn ( function ( ) {
426
+ context = this ;
390
427
} ) ;
391
428
392
429
const vm = new Vue ( {
393
430
template : '<div><button @click="contextFunction()"/></div>' ,
394
431
setup ( ) {
395
432
return {
396
- contextFunction
397
- }
398
- }
433
+ contextFunction,
434
+ } ;
435
+ } ,
399
436
} ) . $mount ( ) ;
400
-
437
+
401
438
await vm . $el . querySelector ( 'button' ) . click ( ) ;
402
439
expect ( contextFunction ) . toBeCalled ( ) ;
403
440
expect ( context ) . toBe ( vm ) ;
404
441
} ) ;
405
442
406
443
it ( 'binds methods when calling without parenthesis' , async ( ) => {
407
444
let context = null ;
408
- const contextFunction = jest . fn ( function ( ) {
409
- context = this
445
+ const contextFunction = jest . fn ( function ( ) {
446
+ context = this ;
410
447
} ) ;
411
448
412
449
const vm = new Vue ( {
413
450
template : '<div><button @click="contextFunction"/></div>' ,
414
451
setup ( ) {
415
452
return {
416
- contextFunction
417
- }
418
- }
453
+ contextFunction,
454
+ } ;
455
+ } ,
419
456
} ) . $mount ( ) ;
420
-
457
+
421
458
await vm . $el . querySelector ( 'button' ) . click ( ) ;
422
459
expect ( contextFunction ) . toBeCalled ( ) ;
423
460
expect ( context ) . toBe ( vm ) ;
424
461
} ) ;
425
- } )
462
+ } ) ;
426
463
} ) ;
0 commit comments