chore(test): make unnecessarily async test case sync (#4421)
This commit is contained in:
parent
4792ebd687
commit
a46b0a9a96
@ -15,7 +15,7 @@ describe('shallowReactive', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
// #2843
|
// #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 original = { foo: {} }
|
||||||
const shallowProxy = shallowReactive(original)
|
const shallowProxy = shallowReactive(original)
|
||||||
const reactiveProxy = reactive(original)
|
const reactiveProxy = reactive(original)
|
||||||
|
@ -28,7 +28,7 @@ describe('reactivity/shallowReadonly', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
// #2843
|
// #2843
|
||||||
test('should differentiate from normal readonly calls', async () => {
|
test('should differentiate from normal readonly calls', () => {
|
||||||
const original = { foo: {} }
|
const original = { foo: {} }
|
||||||
const shallowProxy = shallowReadonly(original)
|
const shallowProxy = shallowReadonly(original)
|
||||||
const reactiveProxy = readonly(original)
|
const reactiveProxy = readonly(original)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user