From bf90bde73656e0e84b8f57f1c66a1dcf1c538bf8 Mon Sep 17 00:00:00 2001 From: neverland Date: Fri, 20 Aug 2021 10:20:43 +0800 Subject: [PATCH] =?UTF-8?q?test:=20should=20not=20mix=20async=E3=80=81done?= =?UTF-8?q?=20(#9294)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dropdown-menu/test/index.spec.tsx | 2 +- src/uploader/test/index.spec.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dropdown-menu/test/index.spec.tsx b/src/dropdown-menu/test/index.spec.tsx index f3c6df722..e16124145 100644 --- a/src/dropdown-menu/test/index.spec.tsx +++ b/src/dropdown-menu/test/index.spec.tsx @@ -231,7 +231,7 @@ test('change event', async () => { expect(onChange).toHaveBeenCalledTimes(1); }); -test('toggle method', async (done) => { +test('toggle method', (done) => { const wrapper = mount({ setup() { const item = ref(); diff --git a/src/uploader/test/index.spec.ts b/src/uploader/test/index.spec.ts index 6690af9fd..9632adf8e 100644 --- a/src/uploader/test/index.spec.ts +++ b/src/uploader/test/index.spec.ts @@ -51,7 +51,7 @@ test('disabled', async () => { expect(afterRead).toHaveBeenCalledTimes(0); }); -test('result-type as text', async (done) => { +test('result-type as text', (done) => { const wrapper = mount(Uploader, { props: { resultType: 'text', @@ -555,7 +555,7 @@ test('show-upload prop', async () => { expect(wrapper.find('.van-uploader__upload').exists()).toBeFalsy(); }); -test('file message should be reactive', async (done) => { +test('file message should be reactive', (done) => { const wrapper = mount(Uploader, { props: { modelValue: [],