chore(CountDown): test cases may fail

This commit is contained in:
陈嘉涵 2019-08-23 15:23:10 +08:00
parent 2205285b38
commit 37fca563d0

View File

@ -9,7 +9,7 @@ test('macro task finish event', async () => {
}); });
expect(wrapper.emitted('finish')).toBeFalsy(); expect(wrapper.emitted('finish')).toBeFalsy();
await later(20); await later(50);
expect(wrapper.emitted('finish')).toBeTruthy(); expect(wrapper.emitted('finish')).toBeTruthy();
}); });
@ -22,7 +22,7 @@ test('micro task finish event', async () => {
}); });
expect(wrapper.emitted('finish')).toBeFalsy(); expect(wrapper.emitted('finish')).toBeFalsy();
await later(20); await later(50);
expect(wrapper.emitted('finish')).toBeTruthy(); expect(wrapper.emitted('finish')).toBeTruthy();
}); });
@ -35,7 +35,7 @@ test('macro task re-render', async () => {
}); });
const prevSnapShot = wrapper.html(); const prevSnapShot = wrapper.html();
await later(20); await later(50);
const laterSnapShot = wrapper.html(); const laterSnapShot = wrapper.html();
expect(prevSnapShot !== laterSnapShot).toBeTruthy(); expect(prevSnapShot !== laterSnapShot).toBeTruthy();
@ -51,7 +51,7 @@ test('micro task re-render', async () => {
}); });
const prevSnapShot = wrapper.html(); const prevSnapShot = wrapper.html();
await later(20); await later(50);
const laterSnapShot = wrapper.html(); const laterSnapShot = wrapper.html();
expect(prevSnapShot !== laterSnapShot).toBeTruthy(); expect(prevSnapShot !== laterSnapShot).toBeTruthy();
@ -66,7 +66,7 @@ test('disable auto-start prop', async () => {
} }
}); });
await later(20); await later(50);
expect(wrapper).toMatchSnapshot(); expect(wrapper).toMatchSnapshot();
}); });
@ -103,7 +103,7 @@ test('pause method', async () => {
const prevSnapShot = wrapper.html(); const prevSnapShot = wrapper.html();
wrapper.vm.pause(); wrapper.vm.pause();
await later(20); await later(50);
const laterShapShot = wrapper.html(); const laterShapShot = wrapper.html();
expect(prevSnapShot === laterShapShot).toBeTruthy(); expect(prevSnapShot === laterShapShot).toBeTruthy();
@ -119,7 +119,7 @@ test('reset method', async () => {
}); });
const prevSnapShot = wrapper.html(); const prevSnapShot = wrapper.html();
await later(20); await later(50);
wrapper.vm.reset(); wrapper.vm.reset();
const laterShapShot = wrapper.html(); const laterShapShot = wrapper.html();