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

Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
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); }Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
Thank you that works :)
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
