Files
calendar/packages/app-store/closecom/test/globals.ts
T
Hariom BalharaandGitHub e12b21a73c Check app-store types on CI (#7190)
* Check app-store types on CI

* Fix ESLINt error
2023-03-02 11:58:31 -07:00

18 lines
294 B
TypeScript

jest.mock("@calcom/lib/logger", () => ({
default: {
getChildLogger: () => ({
debug: jest.fn(),
error: jest.fn(),
log: jest.fn(),
}),
},
}));
jest.mock("@calcom/lib/crypto", () => ({
symmetricDecrypt: () => `{
"userApiKey": "test"
}`,
}));
export {};