mirror of
https://github.com/bitwarden/server.git
synced 2026-02-08 18:03:11 +08:00
12 lines
291 B
C#
12 lines
291 B
C#
|
|
using Bit.IntegrationTestCommon.Factories;
|
|||
|
|
|
|||
|
|
namespace Bit.Sso.IntegrationTest.Utilities;
|
|||
|
|
|
|||
|
|
public class SsoApplicationFactory : WebApplicationFactoryBase<Startup>
|
|||
|
|
{
|
|||
|
|
protected override void ConfigureWebHost(IWebHostBuilder builder)
|
|||
|
|
{
|
|||
|
|
base.ConfigureWebHost(builder);
|
|||
|
|
}
|
|||
|
|
}
|