1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13: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 app = require("./app")
const auth = require("./auth") const auth = require("./auth")
const automation = require("./automation") const automation = require("./automation")
@ -14,6 +15,7 @@ const user = require("./user")
const view = require("./view") const view = require("./view")
module.exports = { module.exports = {
account,
app, app,
auth, auth,
automation, automation,

View file

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