budibase/packages/backend-core/tests/utilities/jestUtils.ts

10 lines
215 B
TypeScript
Raw Normal View History

2023-02-28 14:54:34 +01:00
export function expectFunctionWasCalledTimesWith(
jestFunction: any,
times: number,
argument: any
) {
expect(
jestFunction.mock.calls.filter((call: any) => call[0] === argument).length
).toBe(times)
}