1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00

add tests for ShowUser() username overload

This commit is contained in:
Davran Dilshat 2021-09-05 15:11:41 +01:00
parent f7369e0d68
commit 7f9b80e3e5

View File

@ -104,6 +104,9 @@ namespace osu.Game.Tests.Visual.Online
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c4.jpg"
}, api.IsLoggedIn));
AddStep("Show ppy from username", () => profile.ShowUser(@"peppy"));
AddStep("Show flyte from username", () => profile.ShowUser(@"flyte"));
AddStep("Hide", profile.Hide);
AddStep("Show without reload", profile.Show);
}