mirror of
https://github.com/bitwarden/server
synced 2025-12-16 08:13:33 +00:00
16 lines
410 B
C#
16 lines
410 B
C#
using Bit.Core.Services;
|
|
using Bit.IntegrationTestCommon.Factories;
|
|
|
|
namespace Bit.SeederApi.IntegrationTest;
|
|
|
|
public class SeederApiApplicationFactory : WebApplicationFactoryBase<Program>
|
|
{
|
|
public SeederApiApplicationFactory()
|
|
{
|
|
_configureTestServices.Add(serviceCollection =>
|
|
{
|
|
serviceCollection.AddSingleton<IPlayIdService, NeverPlayIdServices>();
|
|
});
|
|
}
|
|
}
|