@@ -76,7 +76,7 @@ describe.each([
76
76
/>
77
77
) )
78
78
79
- await userEvent . click ( screen . getByText ( / H u m a n R e s o u r c e s / ) )
79
+ await userEvent . click ( screen . getByText ( / A d m i n i s t r a t o r s / ) )
80
80
expect ( activated . value ) . toStrictEqual ( [ ] )
81
81
82
82
await userEvent . click ( screen . getByText ( / J o h n / ) )
@@ -98,7 +98,7 @@ describe.each([
98
98
/>
99
99
) )
100
100
101
- await userEvent . click ( screen . getByText ( / H u m a n R e s o u r c e s / ) )
101
+ await userEvent . click ( screen . getByText ( / A d m i n i s t r a t o r s / ) )
102
102
expect ( activated . value ) . toStrictEqual ( [ ] )
103
103
104
104
await userEvent . click ( screen . getByText ( / J o h n / ) )
@@ -120,16 +120,16 @@ describe.each([
120
120
/>
121
121
) )
122
122
123
- await userEvent . click ( screen . getByText ( / H u m a n R e s o u r c e s / ) )
124
- expect ( activated . value ) . toStrictEqual ( [ 1 ] )
125
-
126
- await userEvent . click ( screen . getByText ( / C o r e t e a m / ) )
127
- expect ( activated . value ) . toStrictEqual ( [ 1 , 2 ] )
123
+ await userEvent . click ( screen . getByText ( / A d m i n i s t r a t o r s / ) )
124
+ expect ( activated . value ) . toStrictEqual ( [ 3 ] )
128
125
129
126
await userEvent . click ( screen . getByText ( / J o h n / ) )
130
127
await userEvent . click ( screen . getByText ( / K a e l / ) )
131
128
await userEvent . click ( screen . getByText ( / N e k o s a u r / ) )
132
- expect ( activated . value ) . toStrictEqual ( [ 1 , 2 , 201 , 202 , 203 ] )
129
+ expect ( activated . value ) . toStrictEqual ( [ 3 , 201 , 202 , 203 ] )
130
+
131
+ await userEvent . click ( screen . getByText ( / C o r e t e a m / ) )
132
+ expect ( activated . value ) . toStrictEqual ( [ 3 , 201 , 202 , 203 , 2 ] )
133
133
} )
134
134
135
135
it ( 'single-independent strategy' , async ( ) => {
@@ -145,16 +145,16 @@ describe.each([
145
145
/>
146
146
) )
147
147
148
- await userEvent . click ( screen . getByText ( / H u m a n R e s o u r c e s / ) )
149
- expect ( activated . value ) . toStrictEqual ( [ 1 ] )
150
-
151
- await userEvent . click ( screen . getByText ( / C o r e t e a m / ) )
152
- expect ( activated . value ) . toStrictEqual ( [ 2 ] )
148
+ await userEvent . click ( screen . getByText ( / A d m i n i s t r a t o r s / ) )
149
+ expect ( activated . value ) . toStrictEqual ( [ 3 ] )
153
150
154
151
await userEvent . click ( screen . getByText ( / J o h n / ) )
155
152
await userEvent . click ( screen . getByText ( / K a e l / ) )
156
153
await userEvent . click ( screen . getByText ( / N e k o s a u r / ) )
157
154
expect ( activated . value ) . toStrictEqual ( [ 203 ] )
155
+
156
+ await userEvent . click ( screen . getByText ( / C o r e t e a m / ) )
157
+ expect ( activated . value ) . toStrictEqual ( [ 2 ] )
158
158
} )
159
159
160
160
// https://github.com/vuetifyjs/vuetify/issues/20665
0 commit comments