@@ -382,6 +382,7 @@ describe('Options provide/inject', () => {
382
382
383
383
expect ( injected ) . toEqual ( [ 'foo' , 'bar' ] )
384
384
} )
385
+
385
386
it ( 'should merge provide from mixins (functions)' , ( ) => {
386
387
const mixinA = { provide : ( ) => ( { foo : 'foo' } ) }
387
388
const mixinB = { provide : ( ) => ( { bar : 'bar' } ) }
@@ -401,6 +402,7 @@ describe('Options provide/inject', () => {
401
402
402
403
expect ( injected ) . toEqual ( [ 'foo' , 'bar' ] )
403
404
} )
405
+
404
406
it ( 'should merge provide from mixins (mix of objects and functions)' , ( ) => {
405
407
const mixinA = { provide : { foo : 'foo' } }
406
408
const mixinB = { provide : ( ) => ( { bar : 'bar' } ) }
@@ -422,6 +424,7 @@ describe('Options provide/inject', () => {
422
424
423
425
expect ( injected ) . toEqual ( [ 'foo' , 'bar' , 'baz' , 'bam' ] )
424
426
} )
427
+
425
428
it ( 'should merge provide from mixins and override existing keys' , ( ) => {
426
429
const mixinA = { provide : { foo : 'foo' } }
427
430
const mixinB = { provide : { foo : 'bar' } }
@@ -441,6 +444,7 @@ describe('Options provide/inject', () => {
441
444
442
445
expect ( injected ) . toEqual ( [ 'bar' ] )
443
446
} )
447
+
444
448
it ( 'should merge provide when Vue.extend' , ( ) => {
445
449
const mixinA = { provide : ( ) => ( { foo : 'foo' } ) }
446
450
const child = {
@@ -504,4 +508,41 @@ describe('Options provide/inject', () => {
504
508
expect ( isObserver ( child . bar ) ) . toBe ( false )
505
509
expect ( isObserver ( child . baz ) ) . toBe ( false )
506
510
} )
511
+
512
+ // #6175
513
+ it ( 'merge provide properly from mixins' , ( ) => {
514
+ const ProvideFooMixin = {
515
+ provide : {
516
+ foo : 'foo injected'
517
+ }
518
+ }
519
+
520
+ const ProvideBarMixin = {
521
+ provide : {
522
+ bar : 'bar injected'
523
+ }
524
+ }
525
+
526
+ const Child = {
527
+ inject : [ 'foo' , 'bar' ] ,
528
+ render ( h ) {
529
+ return h ( 'div' , [ `foo: ${ this . foo } , ` , `bar: ${ this . bar } ` ] )
530
+ }
531
+ }
532
+
533
+ const Parent = {
534
+ mixins : [ ProvideFooMixin , ProvideBarMixin ] ,
535
+ render ( h ) {
536
+ return h ( Child )
537
+ }
538
+ }
539
+
540
+ const vm = new Vue ( {
541
+ render ( h ) {
542
+ return h ( Parent )
543
+ }
544
+ } ) . $mount ( )
545
+
546
+ expect ( vm . $el . textContent ) . toBe ( `foo: foo injected, bar: bar injected` )
547
+ } )
507
548
} )
0 commit comments