Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/blame/commit/b6a53e497c7030cedc30f6dff6bd55c6324c888e/tests/Recyclarr.Cli.IntegrationTests/CliIntegrationFixture.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
recyclarr/tests/Recyclarr.Cli.IntegrationTests/CliIntegrationFixture.cs

15 lines
439 B

using Autofac;
using Recyclarr.IntegrationTests;
namespace Recyclarr.Cli.IntegrationTests;
internal abstract class CliIntegrationFixture : IntegrationTestFixture
{
protected override void RegisterTypes(ContainerBuilder builder)
{
// Do NOT invoke the base method here!
// We are deliberately REPLACING those registrations (the composition root here is a SUPERSET).
CompositionRoot.Setup(builder);
}
}