0
sukhdeep.dhillon created
- ABP Framework version: v7.2.2
- UI type: Angular
- DB provider: EF Core
Hi, after updating the ABP from V6.0 to V7.2.2.** Random tests are failing **
following is the screenshot of ABP Sample tests is failing sometimes I'm getting Null Reference Exception and Sometime System.InvalidOperationException : SqliteConnection does not support nested transactions.
I have tried to add the context.Services.AddAlwaysDisableUnitOfWorkTransaction(); but the issue is still there
2 Answer(s)
-
0
Hi,
Can you try this?
public override void ConfigureServices(ServiceConfigurationContext context) { Configure<FeatureManagementOptions>(options => { options.SaveStaticFeaturesToDatabase = false; options.IsDynamicFeatureStoreEnabled = false; }); Configure<PermissionManagementOptions>(options => { options.SaveStaticPermissionsToDatabase = false; options.IsDynamicPermissionStoreEnabled = false; }); context.Services.AddAlwaysDisableUnitOfWorkTransaction(); ConfigureInMemorySqlite(context.Services); }
-
0
Thank you that works :)