Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Removing parallelization
  • Loading branch information
jbogard committed Jul 29, 2025
commit 5a31dc5c6ae7c1127cef8403e0c8a4805104d3f5
4 changes: 4 additions & 0 deletions test/MediatR.Tests/ServiceFactoryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@

namespace MediatR.Tests;

[CollectionDefinition(nameof(ServiceFactoryCollectionBehavior), DisableParallelization = true)]
public class ServiceFactoryCollectionBehavior {}

[Collection(nameof(ServiceFactoryCollectionBehavior))]
public class ServiceFactoryTests
{
public class Ping : IRequest<Pong>
Expand Down
Loading