1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 01:52:55 +08:00

Ensure rows have loaded before attempting to click them

This commit is contained in:
Dean Herbert 2022-05-31 15:54:07 +09:00
parent ebb83a5e49
commit 9746cbb161

View File

@ -52,6 +52,8 @@ namespace osu.Game.Tests.Visual.Editing
public void SetUpSteps()
{
AddStep("Stop clock", () => Clock.Stop());
AddUntilStep("wait for rows to load", () => Child.ChildrenOfType<EffectRowAttribute>().Any());
}
[Test]