1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

Add overriddable configuration (#4437)

* Add Overridable Configuration

* Add Remarks
This commit is contained in:
Justin Baur
2024-06-28 10:28:07 -04:00
committed by GitHub
parent 1ec2aae723
commit 84b18e9de7
2 changed files with 65 additions and 10 deletions

View File

@ -4,6 +4,8 @@ using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.TestHost;
using Microsoft.Data.Sqlite;
#nullable enable
namespace Bit.Api.IntegrationTest.Factories;
public class ApiApplicationFactory : WebApplicationFactoryBase<Startup>
@ -62,7 +64,7 @@ public class ApiApplicationFactory : WebApplicationFactoryBase<Startup>
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
SqliteConnection.Dispose();
SqliteConnection!.Dispose();
}
/// <summary>