Closed Luigie closed 3 years ago
Hi @Luigie, sadly I can't provide an answer based on the information. Have you tried to debug the second test?
Also, make sure that you don't run your tests in parallel
Hello Tim,
okay the problem was that the xunit.runner.json file was not existing.
Thx
Hello Tim, Thanks for the good example for E2E testing.
I have this this issue that running all my tests are failing. individually they are all okay.
public class ApiWebApplicationFactory : WebApplicationFactory
{
public IConfiguration Configuration { get; private set; }
public abstract class IntegrationTestBase : IClassFixture
{
public readonly Checkpoint Checkpoint = new Checkpoint
{
SchemasToInclude = new[] {
"BLD"
},
WithReseed = true,
};
}