diff --git a/Content.IntegrationTests/Tests/ClickableTest.cs b/Content.IntegrationTests/Tests/ClickableTest.cs index 7ac1f71eef..25e4399135 100644 --- a/Content.IntegrationTests/Tests/ClickableTest.cs +++ b/Content.IntegrationTests/Tests/ClickableTest.cs @@ -4,6 +4,7 @@ using Content.Client.Clickable; using Content.Server.GameTicking; using NUnit.Framework; using Robust.Server.GameObjects; +using Robust.Shared; using Robust.Shared.GameObjects; using Robust.Shared.IoC; using Robust.Shared.Map; @@ -27,7 +28,13 @@ namespace Content.IntegrationTests.Tests [OneTimeSetUp] public async Task Setup() { - (_client, _server) = await StartConnectedServerClientPair(); + (_client, _server) = await StartConnectedServerClientPair(serverOptions: new ServerContentIntegrationOption() + { + CVarOverrides = + { + [CVars.NetPVS.Name] = "false" + } + }); } [Parallelizable(ParallelScope.None)] diff --git a/Content.IntegrationTests/Tests/GameObjects/Components/Mobs/ActionsComponentTests.cs b/Content.IntegrationTests/Tests/GameObjects/Components/Mobs/ActionsComponentTests.cs index 6c74485d7a..845121a157 100644 --- a/Content.IntegrationTests/Tests/GameObjects/Components/Mobs/ActionsComponentTests.cs +++ b/Content.IntegrationTests/Tests/GameObjects/Components/Mobs/ActionsComponentTests.cs @@ -13,6 +13,7 @@ using Content.Shared.Cooldown; using NUnit.Framework; using Robust.Client.UserInterface; using Robust.Server.Player; +using Robust.Shared; using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Timing; @@ -218,7 +219,14 @@ namespace Content.IntegrationTests.Tests.GameObjects.Components.Mobs [Test] public async Task GrantsAndRevokesItemActions() { - var serverOptions = new ServerIntegrationOptions { ExtraPrototypes = Prototypes }; + var serverOptions = new ServerIntegrationOptions + { + ExtraPrototypes = Prototypes, + CVarOverrides = + { + {CVars.NetPVS.Name, "false"} + } + }; var clientOptions = new ClientIntegrationOptions { ExtraPrototypes = Prototypes }; var (client, server) = await StartConnectedServerClientPair(serverOptions: serverOptions, clientOptions: clientOptions); diff --git a/Content.IntegrationTests/Tests/Lobby/CharacterCreationTest.cs b/Content.IntegrationTests/Tests/Lobby/CharacterCreationTest.cs index 3453885d5a..af1f01722c 100644 --- a/Content.IntegrationTests/Tests/Lobby/CharacterCreationTest.cs +++ b/Content.IntegrationTests/Tests/Lobby/CharacterCreationTest.cs @@ -7,6 +7,7 @@ using Content.Shared.CCVar; using Content.Shared.Preferences; using NUnit.Framework; using Robust.Client.State; +using Robust.Shared; using Robust.Shared.Configuration; using Robust.Shared.GameObjects; using Robust.Shared.Network; @@ -26,7 +27,8 @@ namespace Content.IntegrationTests.Tests.Lobby CVarOverrides = { [CCVars.GameDummyTicker.Name] = "false", - [CCVars.GameLobbyEnabled.Name] = "true" + [CCVars.GameLobbyEnabled.Name] = "true", + [CVars.NetPVS.Name] = "false" } };