diff --git a/goofy-client/apps/goofy-e2e/src/integration/interceptor/interceptor-connection-timout.e2e-spec.ts b/goofy-client/apps/goofy-e2e/src/integration/interceptor/interceptor-connection-timout.e2e-spec.ts index 2f1a77901e5715315557c6eae70f84a21089db66..ba588e95d549d9d449fbc4cfcd271dce3b8b757e 100644 --- a/goofy-client/apps/goofy-e2e/src/integration/interceptor/interceptor-connection-timout.e2e-spec.ts +++ b/goofy-client/apps/goofy-e2e/src/integration/interceptor/interceptor-connection-timout.e2e-spec.ts @@ -57,7 +57,7 @@ describe('Interceptor Connection Timeout', () => { }) it.skip('(LOCAL ONLY) should show fail dialog after time is over', () => { - cy.wait(6000); + cy.wait(10000);//Hier das BE ausstellen exist(connectionTimeoutRetryFailDialog.getIcon()); contains(connectionTimeoutRetryFailDialog.getHeader(), 'Zeitüberschreitung der Verbindung'); @@ -68,7 +68,8 @@ describe('Interceptor Connection Timeout', () => { it.skip('(LOCAL ONLY) should reload page on click on button', () => { connectionTimeoutRetryFailDialog.getReloadButton().click(); - exist(vorgangPage.getSpinner()); + cy.wait(10000);//Hier das BE ausstellen + exist(vorgangPage.getVorgangDetailHeader().getRoot()); }) })