Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/28a919e74a2ed01d395f28d00693a91c7e854b7c/NzbDrone.Integration.Test/CommandIntegerationTests.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Integration.Test/CommandIntegerationTests.cs

17 lines
350 B

using NUnit.Framework;
using NzbDrone.Api.Commands;
namespace NzbDrone.Integration.Test
{
[TestFixture]
public class CommandIntegrationTest : IntegrationTest
{
[Test]
public void should_be_able_to_run_rss_sync()
{
Commands.Post(new CommandResource {Command = "rsssync"});
}
}
}