refactor(connector-popup): simplify terminology by renaming "Manage External MCP Connectors" to "MCP Connectors" across components and tests

This commit is contained in:
Anish Sarkar 2026-07-14 01:17:24 +05:30
parent 91531286b2
commit faffd9974c
15 changed files with 17 additions and 17 deletions

View file

@ -32,7 +32,7 @@ test.describe("Native Google Calendar journey", () => {
waitUntil: "domcontentloaded",
});
await openConnectorPopup(page);
const connectorDialog = page.getByRole("dialog", { name: "Manage External MCP Connectors" });
const connectorDialog = page.getByRole("dialog", { name: "MCP Connectors" });
await expect(connectorDialog).toBeVisible();
const beforeDocs = await listDocuments(request, apiToken, workspace.id);

View file

@ -32,7 +32,7 @@ test.describe("Native Google Gmail journey", () => {
waitUntil: "domcontentloaded",
});
await openConnectorPopup(page);
const connectorDialog = page.getByRole("dialog", { name: "Manage External MCP Connectors" });
const connectorDialog = page.getByRole("dialog", { name: "MCP Connectors" });
await expect(connectorDialog).toBeVisible();
const beforeDocs = await listDocuments(request, apiToken, workspace.id);