From 82410f30b94e46a87e045e3796478c4a5885b778 Mon Sep 17 00:00:00 2001 From: Laurent Nguyen Date: Thu, 16 May 2024 18:04:49 +0200 Subject: [PATCH] Revert "Add test screenshot to troubleshoot e2e test" This reverts commit 1b8138ade00571972c0e9bce77846e8fe4a3446a. --- test/mongo/container.spec.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/mongo/container.spec.ts b/test/mongo/container.spec.ts index 543d64bc7..baafefbbe 100644 --- a/test/mongo/container.spec.ts +++ b/test/mongo/container.spec.ts @@ -12,7 +12,7 @@ test("Mongo CRUD", async () => { const token = await getAzureCLICredentialsToken(); page.setDefaultTimeout(50000); - await page.goto(`https://localhost:1234/testExplorer.html?accountName=languye-mongo&token=${token}`); + await page.goto(`https://localhost:1234/testExplorer.html?accountName=portal-mongo-runner&token=${token}`); const explorer = await waitForExplorer(); // Create new database and collection @@ -40,9 +40,7 @@ test("Mongo CRUD", async () => { await explorer.fill('text=* Confirm by typing the collection id >> input[type="text"]', containerId); await explorer.click('[aria-label="OK"]'); await explorer.click(`[data-test="${databaseId}"] [aria-label="More options"]`); - await page.screenshot({ path: "beforeDeleteDatabase.png" }); await explorer.click('button[role="menuitem"]:has-text("Delete Database")'); - await page.screenshot({ path: "afterDeleteDatabase.png" }); await explorer.click('text=* Confirm by typing the database id >> input[type="text"]'); await explorer.fill('text=* Confirm by typing the database id >> input[type="text"]', databaseId); await explorer.click("#sidePanelOkButton");