We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15c4b16 commit 7f4b213Copy full SHA for 7f4b213
tests/unit/counter.spec.js
@@ -187,15 +187,15 @@ describe("[ Counter.vue ]", () => {
187
it("do not count the value before delay", (done) => {
188
const counterWrapper = factory({
189
legend: 50,
190
- animation: "default 200 600",
+ animation: "default 500 1000",
191
}).findComponent(Counter);
192
expect(counterWrapper.vm.currentValue).to.equal(0);
193
expect(counterWrapper.element.textContent).to.equal("0");
194
setTimeout(() => {
195
196
197
done();
198
- }, 500);
+ }, 300);
199
});
200
201
0 commit comments