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 ca16b1d commit 0c3dea7Copy full SHA for 0c3dea7
src/core/utils.test.js
@@ -625,6 +625,9 @@ describe("debounce ...", function () {
625
debouncer();
626
expect(test_func).not.toHaveBeenCalled();
627
await utils.timeout(1);
628
+ await utils.timeout(1);
629
630
631
expect(test_func).toHaveBeenCalledTimes(1);
632
});
633
it("incorrect usage by multi instantiation won't cancel previous runs", async () => {
0 commit comments