fleet/frontend/utilities/debounce/debounce.tests.ts
Martavis Parker 384c987389
Removed all traces of Redux from the app! (#5287)
* clean up routes and useless components

* component clean up

* removed redux from routes

* rename file

* moved useDeepEffect hook with others

* removed redux, fleet, app_constants dirs; added types to utilities

* style cleanup

* typo fix

* removed unused ts-ignore comments

* removed redux packages!!!

* formatting

* fixed typing for simple search function

* updated frontend readme
2022-04-22 09:45:35 -07:00

15 lines
364 B
TypeScript

import debounce from "./index";
describe("debounce - utility", () => {
it("prevents double-clicks from executing a function multiple times", () => {
let count = 0;
const increaseCount = () => {
count += 1;
};
const debouncedFunc = debounce(increaseCount);
debouncedFunc();
debouncedFunc();
expect(count).toEqual(1);
});
});