@@ -4,16 +4,14 @@ import { defineComponent } from 'vue'
4
4
5
5
describe ( 'Multiple Roots' , ( ) => {
6
6
function defineMyStore ( ) {
7
- return defineStore ( {
8
- id : 'main' ,
7
+ return defineStore ( 'main' , {
9
8
state : ( ) => ( {
10
9
n : 0 ,
11
10
} ) ,
12
11
} )
13
12
}
14
13
15
14
it ( 'uses the same root in child components by default' , ( ) => {
16
- expect . assertions ( 2 )
17
15
const pinia = createPinia ( )
18
16
const useStore = defineMyStore ( )
19
17
@@ -37,10 +35,12 @@ describe('Multiple Roots', () => {
37
35
} ,
38
36
{ global : { plugins : [ pinia ] } }
39
37
)
38
+
39
+ const store = useStore ( )
40
+ expect ( store . n ) . toBe ( 1 )
40
41
} )
41
42
42
43
it ( 'can use a new pinia root for all child components' , async ( ) => {
43
- expect . assertions ( 2 )
44
44
const pinia = createPinia ( )
45
45
const useStore = defineMyStore ( )
46
46
@@ -64,35 +64,8 @@ describe('Multiple Roots', () => {
64
64
} ,
65
65
{ global : { plugins : [ pinia ] } }
66
66
)
67
- } )
68
-
69
- it ( 'state is shared between child components' , async ( ) => {
70
- expect . assertions ( 3 )
71
- const pinia = createPinia ( )
72
- const useStore = defineMyStore ( )
73
67
74
- const ChildComponent = defineComponent ( {
75
- template : 'no' ,
76
- props : { counter : { type : Number , required : true } } ,
77
- setup ( props : { counter : number } ) {
78
- const store = useStore ( )
79
- expect ( store . n ) . toBe ( props . counter )
80
- store . n ++
81
- } ,
82
- } )
83
- mount (
84
- {
85
- template :
86
- '<ChildComponent :counter="0" /><ChildComponent :counter="1" />' ,
87
- components : { ChildComponent } ,
88
- setup ( ) {
89
- const store = useStore ( )
90
- expect ( store . n ) . toBe ( 0 )
91
- store . n ++
92
- providePinia ( createPinia ( ) )
93
- } ,
94
- } ,
95
- { global : { plugins : [ pinia ] } }
96
- )
68
+ const store = useStore ( )
69
+ expect ( store . n ) . toBe ( 0 )
97
70
} )
98
71
} )
0 commit comments