This commit is contained in:
6d486f49
2026-08-17 00:45:08 -04:00
parent 3a2f112a73
commit 1d6207fbfe
154 changed files with 126007 additions and 47385 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ public class CardsPageTests : PageTest
Page.PageError += (_, err) => Console.WriteLine($"[BROWSER PAGE ERROR] {err}");
await Page.GotoAsync($"{BaseUrl}/cards");
await Page.WaitForSelectorAsync("h1", new() { Timeout = 30000 });
await Page.WaitForSelectorAsync("h1", new PageWaitForSelectorOptions { Timeout = 30000 });
// Give Blazor WASM a moment to render
await Page.WaitForTimeoutAsync(3000);
@@ -31,4 +31,4 @@ public class CardsPageTests : PageTest
var html = await Page.ContentAsync();
File.WriteAllText("cards_page_dump.html", html);
}
}
}