test: add ClientIntegrationTestBase with shared auth HttpClient

This commit is contained in:
Joseph Doherty
2026-01-06 11:36:13 -05:00
parent 7e5ac56525
commit 3ed2d7324d
2 changed files with 87 additions and 0 deletions
@@ -0,0 +1,10 @@
namespace JdeScoping.Api.IntegrationTests.ClientIntegration;
/// <summary>
/// Collection definition for client integration tests.
/// Prevents parallel execution to avoid auth state conflicts.
/// </summary>
[CollectionDefinition("ClientIntegration")]
public class ClientIntegrationCollection : ICollectionFixture<TestWebApplicationFactory>
{
}