1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00
budibase/packages/backend-core/tests/utilities/mocks/accounts.ts

8 lines
175 B
TypeScript
Raw Normal View History

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