1
0
Fork 0
mirror of synced 2024-07-05 22:40:39 +12:00
budibase/packages/backend-core/tests/utilities/mocks/accounts.ts
2022-08-25 19:41:47 +01:00

8 lines
175 B
TypeScript

export const getAccount = jest.fn()
export const getAccountByTenantId = jest.fn()
jest.mock("../../../src/cloud/accounts", () => ({
getAccount,
getAccountByTenantId,
}))