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:
Joseph Doherty
2026-02-10 08:05:42 -05:00
parent cd219ae00b
commit 9bd5e340b0
23 changed files with 167 additions and 213 deletions
@@ -15,13 +15,11 @@ public sealed class DataSyncPageTests(PlaywrightFixture fixture) : UiTestBase(fi
/// </summary>
/// <remarks>
/// Steps:
/// <list type="number">
/// <item>Navigate to the Data Sync Requests page.</item>
/// <item>Assert the URL ends with /data-sync/requests or /search (redirect).</item>
/// <item>If on the data sync page, assert "Data Sync Requests" heading is visible.</item>
/// <item>Assert "New Request" or "Reload Pipelines" button is visible.</item>
/// <item>If redirected, assert "Search Details" is visible.</item>
/// </list>
/// 1. Navigate to the Data Sync Requests page.
/// 2. Assert the URL ends with /data-sync/requests or /search (redirect).
/// 3. If on the data sync page, assert "Data Sync Requests" heading is visible.
/// 4. Assert "New Request" or "Reload Pipelines" button is visible.
/// 5. If redirected, assert "Search Details" is visible.
/// </remarks>
[Fact]
[Trait("Category", "RequiresDockerHost")]