Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Commit

Permalink
fix: integration tests run in series
Browse files Browse the repository at this point in the history
  • Loading branch information
ThorstenSauter committed Feb 3, 2024
1 parent aebc471 commit 430a726
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/NoPlan.Api.Tests.Integration/EndpointCollection.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
namespace NoPlan.Api.Tests.Integration;

[CollectionDefinition(nameof(EndpointCollection))]
public class EndpointCollection;
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
namespace NoPlan.Api.Tests.Integration.TestBases;

[Collection(nameof(EndpointCollection))]
public class EndpointTestBase(NoPlanApiFactory factory) : IAsyncLifetime, IClassFixture<NoPlanApiFactory>
{
protected HttpClient AuthenticatedClientClient { get; private set; } = null!;
Expand Down

0 comments on commit 430a726

Please sign in to comment.