fix: e2e test failure in ci (#21510)

* fix: delete dilog button not visible

* fix: global e2e fialure

* update

* tweak
This commit is contained in:
Anik Dhabal Babu
2025-05-24 13:11:36 -04:00
committed by GitHub
parent a06b2009ab
commit d43afe7dbd
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -395,7 +395,7 @@ export const createUsersFixture = (
},
{
id: "a8ba9aab-4567-489a-bcde-f1823f71b4ad",
action: { type: "externalRedirectUrl", value: "https://cal.com" },
action: { type: "externalRedirectUrl", value: "https://cal.com/peer" },
queryValue: {
id: "a8ba9aab-4567-489a-bcde-f1823f71b4ad",
type: "group",
@@ -262,7 +262,7 @@ test.describe("Routing Forms", () => {
option: 2,
page,
});
await page.fill("[name=externalRedirectUrl]", "https://cal.com");
await page.fill("[name=externalRedirectUrl]", "https://cal.com/peer");
await saveCurrentForm(page);
const { fields } = await addAllTypesOfFieldsAndSaveForm(formId, page, {
@@ -576,7 +576,7 @@ test.describe("Routing Forms", () => {
routingType = await page.locator('[data-testid="chosen-route-title"]').innerText();
route = await page.locator('[data-testid="test-routing-result"]').innerText();
expect(routingType).toBe("External Redirect");
expect(route).toBe("https://cal.com");
expect(route).toBe("https://cal.com/peer");
await page.click('[data-testid="close-results-button"]');
// Multiselect(Legacy)
@@ -925,7 +925,7 @@ test.describe("Routing Forms", () => {
option: 2,
page,
});
await page.fill("[name=externalRedirectUrl]", "https://cal.com");
await page.fill("[name=externalRedirectUrl]", "https://cal.com/peer");
await saveCurrentForm(page);
return {
formId,