Type fixes
parent
eb35edce74
commit
335ebb30c5
|
@ -683,7 +683,7 @@ export function expectWorkflowToBeTriggered() {
|
||||||
// TODO: Implement this.
|
// TODO: Implement this.
|
||||||
}
|
}
|
||||||
|
|
||||||
export function expectBookingToBeInDatabase(booking: Prisma.BookingCreateInput) {
|
export function expectBookingToBeInDatabase(booking: Partial<Prisma.BookingCreateInput>) {
|
||||||
const createBookingCalledWithArgs = prismaMock.booking.create.mock.calls[0];
|
const createBookingCalledWithArgs = prismaMock.booking.create.mock.calls[0];
|
||||||
expect(createBookingCalledWithArgs[0].data).toEqual(expect.objectContaining(booking));
|
expect(createBookingCalledWithArgs[0].data).toEqual(expect.objectContaining(booking));
|
||||||
}
|
}
|
||||||
|
@ -708,6 +708,7 @@ expect.extend({
|
||||||
toHaveEmail(
|
toHaveEmail(
|
||||||
testEmail: ReturnType<Fixtures["emails"]["get"]>[number],
|
testEmail: ReturnType<Fixtures["emails"]["get"]>[number],
|
||||||
expectedEmail: {
|
expectedEmail: {
|
||||||
|
//TODO: Support email HTML parsing to target specific elements
|
||||||
htmlToContain?: string;
|
htmlToContain?: string;
|
||||||
to: string;
|
to: string;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,7 @@ import { appKeysSchema as calVideoKeysSchema } from "@calcom/app-store/dailyvide
|
||||||
import { getEventLocationTypeFromApp } from "@calcom/app-store/locations";
|
import { getEventLocationTypeFromApp } from "@calcom/app-store/locations";
|
||||||
import { MeetLocationType } from "@calcom/app-store/locations";
|
import { MeetLocationType } from "@calcom/app-store/locations";
|
||||||
import getApps from "@calcom/app-store/utils";
|
import getApps from "@calcom/app-store/utils";
|
||||||
|
import logger from "@calcom/lib/logger";
|
||||||
import prisma from "@calcom/prisma";
|
import prisma from "@calcom/prisma";
|
||||||
import { createdEventSchema } from "@calcom/prisma/zod-utils";
|
import { createdEventSchema } from "@calcom/prisma/zod-utils";
|
||||||
import type { NewCalendarEventType } from "@calcom/types/Calendar";
|
import type { NewCalendarEventType } from "@calcom/types/Calendar";
|
||||||
|
|
Loading…
Reference in New Issue