Fixed test (#7572)
parent
2fa83bd512
commit
1b468b9ae7
|
@ -106,9 +106,18 @@ test.describe("Manage Booking Questions", () => {
|
||||||
const payload = (request.body as any).payload as any;
|
const payload = (request.body as any).payload as any;
|
||||||
|
|
||||||
expect(payload.responses).toMatchObject({
|
expect(payload.responses).toMatchObject({
|
||||||
name: "Booker",
|
email: {
|
||||||
email: "booker@example.com",
|
label: "email_address",
|
||||||
how_are_you: "I am great!",
|
value: "booker@example.com",
|
||||||
|
},
|
||||||
|
how_are_you: {
|
||||||
|
label: "How are you?",
|
||||||
|
value: "I am great!",
|
||||||
|
},
|
||||||
|
name: {
|
||||||
|
label: "your_name",
|
||||||
|
value: "Booker",
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(payload.location).toBe("integrations:daily");
|
expect(payload.location).toBe("integrations:daily");
|
||||||
|
@ -119,7 +128,10 @@ test.describe("Manage Booking Questions", () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(payload.userFieldsResponses).toMatchObject({
|
expect(payload.userFieldsResponses).toMatchObject({
|
||||||
how_are_you: "I am great!",
|
how_are_you: {
|
||||||
|
label: "How are you?",
|
||||||
|
value: "I am great!",
|
||||||
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -233,9 +245,18 @@ async function runTestStepsCommonForTeamAndUserEventType(
|
||||||
const payload = (request.body as any).payload as any;
|
const payload = (request.body as any).payload as any;
|
||||||
|
|
||||||
expect(payload.responses).toMatchObject({
|
expect(payload.responses).toMatchObject({
|
||||||
name: "Booker",
|
email: {
|
||||||
email: "booker@example.com",
|
label: "email_address",
|
||||||
how_are_you: "I am great!",
|
value: "booker@example.com",
|
||||||
|
},
|
||||||
|
how_are_you: {
|
||||||
|
label: "How are you?",
|
||||||
|
value: "I am great!",
|
||||||
|
},
|
||||||
|
name: {
|
||||||
|
label: "your_name",
|
||||||
|
value: "Booker",
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(payload.location).toBe("integrations:daily");
|
expect(payload.location).toBe("integrations:daily");
|
||||||
|
@ -246,7 +267,10 @@ async function runTestStepsCommonForTeamAndUserEventType(
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(payload.userFieldsResponses).toMatchObject({
|
expect(payload.userFieldsResponses).toMatchObject({
|
||||||
how_are_you: "I am great!",
|
how_are_you: {
|
||||||
|
label: "How are you?",
|
||||||
|
value: "I am great!",
|
||||||
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue