})
// #2843
- test('should allow shallow and normal reactive for same target', async () => {
+ test('should allow shallow and normal reactive for same target', () => {
const original = { foo: {} }
const shallowProxy = shallowReactive(original)
const reactiveProxy = reactive(original)
})
// #2843
- test('should differentiate from normal readonly calls', async () => {
+ test('should differentiate from normal readonly calls', () => {
const original = { foo: {} }
const shallowProxy = shallowReadonly(original)
const reactiveProxy = readonly(original)