Fix pipeline errors

This commit is contained in:
Sung-Hyun Kang
2025-04-27 19:21:42 -05:00
parent 12b8523a0a
commit 5ad5c5f398
3 changed files with 6 additions and 6 deletions

View File

@@ -27,6 +27,9 @@ for (const { name, databaseId, containerId, documents } of documentTestCases) {
await documentsTab.documentsListPane.waitFor();
await expect(documentsTab.resultsEditor.locator).toBeAttached({ timeout: 60 * 1000 });
});
test.afterEach(async ({ page }) => {
await page.unrouteAll({ behavior: "ignoreErrors" });
});
for (const document of documents) {
const { documentId: docId, partitionKeys } = document;