mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
test: should not mix async、done (#9294)
This commit is contained in:
parent
816790a875
commit
bf90bde736
@ -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();
|
||||
|
@ -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: [],
|
||||
|
Loading…
x
Reference in New Issue
Block a user