Konstantin Vaganov
Results
1
comments of
Konstantin Vaganov
Fixed similar issue by adding ```TestServer.PreserveExecutionContext = true; ``` before ```WebApplicationFactory.CreateClient()``` call. The root cause seems to be: 1. MSTest collects test output via AsyncLocal-based string builder, see https://github.com/microsoft/testfx/blob/4a1e386b7599b83b82b2a983cf4ab589807acf60/src/Adapter/PlatformServices.Shared/netstandard1.3/Services/ns13ThreadSafeStringWriter.cs#L20 -...