Add test coverage for new display (and remove live version for now)

This commit is contained in:
Dean Herbert
2020-11-02 20:41:14 +09:00
parent c6de0544d2
commit ed30756c19
4 changed files with 77 additions and 4 deletions

View File

@ -92,14 +92,14 @@ namespace osu.Game.Online.Spectator
break;
case APIState.Online:
Task.Run(connect);
Task.Run(Connect);
break;
}
}
private const string endpoint = "https://spectator.ppy.sh/spectator";
private async Task connect()
protected virtual async Task Connect()
{
if (connection != null)
return;