chore(test): make unnecessarily async test case sync (#4421)

This commit is contained in:
阿崔cxr 2021-08-24 06:52:11 +08:00 committed by GitHub
parent 4792ebd687
commit a46b0a9a96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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)