1
0
Fork 0
mirror of synced 2024-06-26 10:00:41 +12:00

account event mocks

This commit is contained in:
Rory Powell 2022-04-05 21:53:27 +01:00
parent a4b49c3633
commit 5b8ea1cdbe
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,4 @@
const account = require("./account")
const app = require("./app")
const auth = require("./auth")
const automation = require("./automation")
@ -14,6 +15,7 @@ const user = require("./user")
const view = require("./view")
module.exports = {
account,
app,
auth,
automation,

View file

@ -1,5 +1,10 @@
jest.mock("../../../events", () => {
return {
account: {
created: jest.fn(),
deleted: jest.fn(),
verified: jest.fn(),
},
app: {
created: jest.fn(),
updated: jest.fn(),