utils/ts-src/once.test.ts
Martin Donnelly c30b36b3f6 init
2020-11-17 11:16:34 +00:00

16 lines
262 B
TypeScript

import { once } from './once';
test('It should trigger once', function () {
const func = jest.fn();
const onetimeFunc = once(func);
onetimeFunc();
expect(func).toHaveBeenCalledTimes(1);
onetimeFunc();
expect(func).toHaveBeenCalledTimes(1);
});