chore(theme): bump ZB.MOM.WW.Theme 0.3.0 -> 0.3.1 (interactive-render nav fix)

This commit is contained in:
Joseph Doherty
2026-06-05 07:19:11 -04:00
parent 2515c9db2d
commit 0783547a2d
5 changed files with 174 additions and 70 deletions
@@ -21,10 +21,13 @@ public class LoginTests
await page.GotoAsync(PlaywrightFixture.BaseUrl);
Assert.Contains("/login", page.Url);
await Expect(page.Locator("h4")).ToHaveTextAsync("ScadaBridge");
// The kit's LoginCard renders the heading "<Product> — sign in" with the
// product token in its own .login-product span; the submit button reads
// "Sign in".
await Expect(page.Locator(".login-product")).ToHaveTextAsync("ScadaBridge");
await Expect(page.Locator("#username")).ToBeVisibleAsync();
await Expect(page.Locator("#password")).ToBeVisibleAsync();
await Expect(page.Locator("button[type='submit']")).ToHaveTextAsync("Sign In");
await Expect(page.Locator("button[type='submit']")).ToHaveTextAsync("Sign in");
}
[Fact]