32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
using Content.Client;
|
|
using Content.Client.Interfaces.Parallax;
|
|
using Robust.Shared.ContentPack;
|
|
using Robust.Shared.Interfaces.Configuration;
|
|
using Robust.Shared.IoC;
|
|
using Robust.UnitTesting;
|
|
|
|
namespace Content.IntegrationTests
|
|
{
|
|
public abstract class ContentIntegrationTest : RobustIntegrationTest
|
|
{
|
|
protected override ClientIntegrationInstance StartClient(ClientIntegrationOptions options = null)
|
|
{
|
|
options = options ?? new ClientIntegrationOptions();
|
|
options.BeforeStart += () =>
|
|
{
|
|
// Connecting to Discord is a massive waste of time.
|
|
// Basically just makes the CI logs a mess.
|
|
IoCManager.Resolve<IConfigurationManager>().SetCVar("discord.enabled", false);
|
|
IoCManager.Resolve<IModLoader>().SetModuleBaseCallbacks(new ClientModuleTestingCallbacks
|
|
{
|
|
ClientBeforeIoC = () =>
|
|
{
|
|
IoCManager.Register<IParallaxManager, DummyParallaxManager>(true);
|
|
}
|
|
});
|
|
};
|
|
return base.StartClient(options);
|
|
}
|
|
}
|
|
}
|