Integration tests go brrrr

This commit is contained in:
Pieter-Jan Briers
2020-08-20 19:23:16 +02:00
parent f57269c5dc
commit 75a7223aa1

View File

@@ -4,6 +4,7 @@ using Content.Client;
using Content.Client.Interfaces.Parallax; using Content.Client.Interfaces.Parallax;
using Content.Server; using Content.Server;
using Content.Server.Interfaces.GameTicking; using Content.Server.Interfaces.GameTicking;
using NUnit.Framework;
using Robust.Shared.ContentPack; using Robust.Shared.ContentPack;
using Robust.Shared.Interfaces.Network; using Robust.Shared.Interfaces.Network;
using Robust.Shared.IoC; using Robust.Shared.IoC;
@@ -12,6 +13,7 @@ using EntryPoint = Content.Client.EntryPoint;
namespace Content.IntegrationTests namespace Content.IntegrationTests
{ {
[Parallelizable(ParallelScope.All)]
public abstract class ContentIntegrationTest : RobustIntegrationTest public abstract class ContentIntegrationTest : RobustIntegrationTest
{ {
protected sealed override ClientIntegrationInstance StartClient(ClientIntegrationOptions options = null) protected sealed override ClientIntegrationInstance StartClient(ClientIntegrationOptions options = null)