From 29c0eb4082f786cfe118fb529371ea168b9498d1 Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 14 Sep 2021 19:15:00 +0800 Subject: [PATCH] test(Swipe): fix accidental failure (#9476) --- packages/vant/src/swipe/test/index.spec.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/vant/src/swipe/test/index.spec.js b/packages/vant/src/swipe/test/index.spec.js index 55aa0227c..9df8fad37 100644 --- a/packages/vant/src/swipe/test/index.spec.js +++ b/packages/vant/src/swipe/test/index.spec.js @@ -61,7 +61,7 @@ test('should swipe to specific swipe after calling the swipeTo method', async () const { swipe } = wrapper.vm.$refs; swipe.swipeTo(2); - await later(50); + await later(100); expect(onChange).toHaveBeenCalledWith(2); }); @@ -78,7 +78,7 @@ test('should allow to call swipeTo method with immediate option', async () => { immediate: true, }); - await later(50); + await later(100); expect(onChange).toHaveBeenCalledWith(2); }); @@ -92,7 +92,7 @@ test('should swipe to next swipe after calling next method', async () => { const { swipe } = wrapper.vm.$refs; swipe.next(); - await later(50); + await later(100); expect(onChange).toHaveBeenCalledWith(1); }); @@ -106,7 +106,7 @@ test('should swipe to prev swipe after calling prev method', async () => { const { swipe } = wrapper.vm.$refs; swipe.prev(); - await later(50); + await later(100); expect(onChange).toHaveBeenCalledWith(2); });