Skip to content

Commit

Permalink
Removes wip test
Browse files Browse the repository at this point in the history
  • Loading branch information
aallbrig committed Jul 18, 2024
1 parent 807c02f commit 59d85ff
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions sdks/unity/Tests/Runtime/PlayMode/AgonesSdkComplianceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,6 @@ public IEnumerator AgonesSdk_Ready_ShouldAlwaysSucceed()
Assert.IsTrue(task.Result);
_mockSdkServer.DeregisterResponseHandler("/ready");
}
[UnityTest]
public IEnumerator AgonesSdk_()
{
_mockSdkServer.RegisterResponseHandler("/ready", _ => "{}");
var sut = _gameObject.AddComponent<AgonesSdk>();
var task = sut.Ready();
yield return AwaitTask(task);
Assert.IsTrue(task.Result);
_mockSdkServer.DeregisterResponseHandler("/ready");
}
private IEnumerator AwaitTask(Task task)
{
while (!task.IsCompleted)
Expand Down

0 comments on commit 59d85ff

Please sign in to comment.