From cecaddbe5b1d1a10a61fb4b8f89d3dcdc26cd3b7 Mon Sep 17 00:00:00 2001 From: Patrick Weyck Date: Thu, 12 Dec 2024 15:18:16 +0100 Subject: [PATCH] chore(test): increase timeout for accountCard --- tests/PageObjects/AdministrationGeneral.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PageObjects/AdministrationGeneral.spec.ts b/tests/PageObjects/AdministrationGeneral.spec.ts index 152260e..da396c9 100644 --- a/tests/PageObjects/AdministrationGeneral.spec.ts +++ b/tests/PageObjects/AdministrationGeneral.spec.ts @@ -32,7 +32,7 @@ test('Administration page objects - General.', async ({ await ShopAdmin.expects(AdminManufacturerCreate.saveButton).toBeVisible(); await ShopAdmin.goesTo(AdminCustomerDetail.url(DefaultSalesChannel.customer.id)); - await ShopAdmin.expects(AdminCustomerDetail.accountCard).toBeVisible(); + await ShopAdmin.expects(AdminCustomerDetail.accountCard).toBeVisible({ timeout: 15_000 }); const category = await TestDataService.createCategory(); await ShopAdmin.goesTo(AdminCategories.url());