remove debug statement

This commit is contained in:
Asier Isayas
2026-01-23 12:37:45 -08:00
parent b3501e7dc8
commit 19ffb5696d
4 changed files with 369 additions and 370 deletions

View File

@@ -50,14 +50,13 @@ for (const { name, databaseId, containerId, documents } of documentTestCases) {
expect(resultData?._id).not.toBeNull();
expect(resultData?._id).toEqual(docId);
});
test(`should be able to create and delete new document from ${docId}`, async () => {
test(`should be able to create and delete new document from ${docId}`, async ({ page }) => {
const span = documentsTab.documentsListPane.getByText(docId, { exact: true }).nth(0);
await span.waitFor();
await expect(span).toBeVisible();
await span.click();
expect(await documentsTab.resultsEditor.text()).toContain(docId);
await page.waitForTimeout(5000); // wait for 5 seconds to ensure document is fully loaded
let newDocumentId;
let retryCount = 0;
await retry(async () => {