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: [],