1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 08:13:33 +00:00
Files
server/test/SeederApi.IntegrationTest/SeederApiApplicationFactory.cs
2025-11-18 10:59:43 -08:00

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>();
});
}
}