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

18 lines
541 B

using AutoMapper;
namespace Recyclarr.Cli.IntegrationTests;
[TestFixture]
internal class AutoMapperConfigurationTest : CliIntegrationFixture
{
[Test]
public void Automapper_config_is_valid()
{
var mapper = Resolve<MapperConfiguration>();
// Build an execution plan like:
// var plan = mapper.BuildExecutionPlan(typeof(QualityProfileConfigYaml), typeof(QualityProfileConfig))
// And do `plan.ToReadableString()` in the Debug Expressions/Watch
mapper.AssertConfigurationIsValid();
}
}