| 233 | // #9916 |
| 234 | it('watching shallow reactive array with deep: false', async () => { |
| 235 | class foo { |
| 236 | prop1: ShallowRef<string> = shallowRef('') |
| 237 | prop2: string = '' |
| 238 | } |
| 239 | |
| 240 | const obj1 = new foo() |
| 241 | const obj2 = new foo() |
no test coverage detected