Convert XML list markup to plain numbered text in UI test remarks
Replace <list type="number"><item>...</item></list> with plain numbered lines in method-level <remarks> blocks across 23 UI test files to match the codebase convention of using simple text in XML doc comments.
This commit is contained in:
@@ -16,14 +16,12 @@ public sealed class LoginPageTests(PlaywrightFixture fixture) : UiTestBase(fixtu
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Steps:
|
||||
/// <list type="number">
|
||||
/// <item>Navigate to the login page.</item>
|
||||
/// <item>Assert the page title contains "Login - JDE Scoping Tool".</item>
|
||||
/// <item>Submit test credentials via UiAuthHelper.LoginAsync.</item>
|
||||
/// <item>Assert the user sees the Logout button or remains on the login view.</item>
|
||||
/// <item>Invoke UiAuthHelper.LogoutAsync.</item>
|
||||
/// <item>GET /api/auth/me and assert HTTP 401 (session revoked).</item>
|
||||
/// </list>
|
||||
/// 1. Navigate to the login page.
|
||||
/// 2. Assert the page title contains "Login - JDE Scoping Tool".
|
||||
/// 3. Submit test credentials via UiAuthHelper.LoginAsync.
|
||||
/// 4. Assert the user sees the Logout button or remains on the login view.
|
||||
/// 5. Invoke UiAuthHelper.LogoutAsync.
|
||||
/// 6. GET /api/auth/me and assert HTTP 401 (session revoked).
|
||||
/// </remarks>
|
||||
[Fact]
|
||||
[Trait("Category", "RequiresDockerHost")]
|
||||
|
||||
Reference in New Issue
Block a user