Restore Scope.Dispose in AppComponentTest to ensure proper resource cleanup during test execution.

This commit is contained in:
Sipke Schoorstra 2025-12-10 11:25:29 +01:00
parent 8730f0cdeb
commit c79275fcca
No known key found for this signature in database
GPG key ID: 5C10502B28A4268F

View file

@ -13,8 +13,6 @@ public abstract class AppComponentTest(App app) : IDisposable
void IDisposable.Dispose()
{
// Disposing the Scope here and in other places where it is created somehow seems to cause the test runner to hang when running other test projects.
// Let's comment it out for the time being.
Scope.Dispose();
OnDispose();
}