Replies: 1 comment 1 reply
-
|
We have I have preference to use Aspire, after V10 is release we can take a look at test with Aspire |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I see that you have pretty large and complex test suite, hard to run locally since you would need to run providers/databases required. In our projects we are using TestContainers for .NET: https://dotnet.testcontainers.org
This simplifies every test that relies on some resource that can be run on docker. It automatically runs required resource using
dotnet test, spins up all instances you need and after that - cleans up existing containers. Running all tests locally requires just one thing - docker. So far this was a gamechanger for our flow.Beta Was this translation helpful? Give feedback.
All reactions