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

10 lines
223 B
TypeScript

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