1
0
Fork 0
mirror of synced 2024-09-17 01:38:40 +12:00
budibase/packages/backend-core/tests/utilities/jestUtils.ts

10 lines
215 B
TypeScript
Raw Normal View History

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