diff --git a/osu.Game/Tests/Visual/EditorTestScene.cs b/osu.Game/Tests/Visual/EditorTestScene.cs
index a393802309..2644daa3a4 100644
--- a/osu.Game/Tests/Visual/EditorTestScene.cs
+++ b/osu.Game/Tests/Visual/EditorTestScene.cs
@@ -3,6 +3,7 @@
using System.Linq;
using JetBrains.Annotations;
+using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.IO.Stores;
@@ -28,6 +29,9 @@ namespace osu.Game.Tests.Visual
protected EditorClock EditorClock { get; private set; }
+ [Resolved]
+ private SkinManager skins { get; set; }
+
///
/// Whether any saves performed by the editor should be isolate (and not persist) to the underlying .
///
@@ -57,6 +61,12 @@ namespace osu.Game.Tests.Visual
AddStep("get clock", () => EditorClock = Editor.ChildrenOfType().Single());
}
+ [Test]
+ public void TestLegacySkin()
+ {
+ AddStep("set legacy skin", () => skins.CurrentSkinInfo.Value = DefaultLegacySkin.Info);
+ }
+
protected virtual void LoadEditor()
{
LoadScreen(Editor = CreateEditor());