Update tests (#820)

This commit is contained in:
Leendert de Borst
2025-07-07 16:02:37 +02:00
committed by Leendert de Borst
parent 23378368fb
commit cdfe7c5a99
2 changed files with 3 additions and 1 deletions

View File

@@ -53,7 +53,6 @@
if (success)
{
NavigationManager.NavigateTo("/");
return;
}
else
{

View File

@@ -73,6 +73,9 @@ public class DbUpgradeTests : ClientPlaywrightTest
await NavigateUsingBlazorRouter("credentials");
await WaitForUrlAsync(string.Empty, "Test credential 1");
// Wait for page to have fully loaded
await Task.Delay(100);
// Check if the expected service names still appear on the index page and are still accessible.
var pageContent = await Page.TextContentAsync("body");
foreach (var serviceName in expectedServiceNamesInVault)