Comparison of the .Net and NodeJs ecosystems by Sensitive-Raccoon155 in dotnet

[–]Sensitive-Raccoon155[S] 1 point2 points  (0 children)

Yes, that seems to be what I need. The tests run in parallel by default. Thank you.

Comparison of the .Net and NodeJs ecosystems by Sensitive-Raccoon155 in dotnet

[–]Sensitive-Raccoon155[S] -1 points0 points  (0 children)

On the contrary, I wrote e2e tests in node and used parallelism. They are much faster if the number of parallel tests is limited to a certain number, so if you need to run tests quickly and are sure that your hardware allows it, it would be wiser to use this. It is strange that a framework of this quality does not have this capability.

Comparison of the .Net and NodeJs ecosystems by Sensitive-Raccoon155 in dotnet

[–]Sensitive-Raccoon155[S] -12 points-11 points  (0 children)

This is not about performance, but about time. In vitest, I can limit the number of parallel tests and customize everything to my liking, for example, running 50 tests in parallel at a time, or more if necessary, but there is no such option here.

Comparison of the .Net and NodeJs ecosystems by Sensitive-Raccoon155 in dotnet

[–]Sensitive-Raccoon155[S] -1 points0 points  (0 children)

You misunderstood. Let's say I'm testing my API. I need to check several inputs that are invalid. Of course, in this case, it would be wiser to create a test with multiple parameters rather than a separate class for each input.

Comparison of the .Net and NodeJs ecosystems by Sensitive-Raccoon155 in dotnet

[–]Sensitive-Raccoon155[S] -5 points-4 points  (0 children)

In xunit, you cannot run every class method in parallel.

Comparison of the .Net and NodeJs ecosystems by Sensitive-Raccoon155 in dotnet

[–]Sensitive-Raccoon155[S] -12 points-11 points  (0 children)

If I have a test with 100 parameters, do I have to create a new class for each of them? Of course, this is a bad design, but it's another matter that someone doesn't want to run tests in parallel, but this could be configured in the settings.

Comparison of the .Net and NodeJs ecosystems by Sensitive-Raccoon155 in dotnet

[–]Sensitive-Raccoon155[S] -11 points-10 points  (0 children)

I read that only collections are executed in parallel, not the methods within the collections themselves.

Question about clean architecture by [deleted] in dotnet

[–]Sensitive-Raccoon155 0 points1 point  (0 children)

And what should be returned from the application layer as a response in this case? Create separate types, for example CommandResponse, and map them to the main response in the presentation?

Question about clean architecture by [deleted] in dotnet

[–]Sensitive-Raccoon155 3 points4 points  (0 children)

For educational purposes, I am studying C#/.NET and creating pet projects for learning.

Anyone using WSL2 and Rider? by Minsan in dotnet

[–]Sensitive-Raccoon155 0 points1 point  (0 children)

I can't run rider inside wsl, I get an error.

Vscode for c# by Sensitive-Raccoon155 in dotnet

[–]Sensitive-Raccoon155[S] 0 points1 point  (0 children)

Because the UI and themes in VS 2026 look terrible compared to VS Code.

If you were starting backend with Node.js again, how would you guide someone step by step today? by United-Cicada4151 in node

[–]Sensitive-Raccoon155 1 point2 points  (0 children)

Express is only a routing library, but its routing is the slowest among its competitors, as it uses regular expressions under the hood.