test(Swipe): fix accidental failure (#9476)

This commit is contained in:
neverland 2021-09-14 19:15:00 +08:00 committed by GitHub
parent a19bfd839d
commit 29c0eb4082
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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