mirror of
https://github.com/bitwarden/server
synced 2026-01-16 07:23:15 +00:00
* feat: add new integration test project * test: add factory for SSO application; ExternalCallback integration tests. * test: modified Integration tests to use seeded data instead of service substitutes with mocked responses, where possible. * fix: re-organize projects in solution. SsoFactory now in its owning project with SSO integration test which match the integration test factory pattern more closely. * claude: better naming of class fields.
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);
|
|
}
|
|
}
|