Skip to content

Commit

Permalink
Merge pull request #1076 from ably/fix/848-rest-presence-sandbox
Browse files Browse the repository at this point in the history
Fix channel presence skipped test
  • Loading branch information
tomkirbygreen authored Jan 6, 2022
2 parents c1041fe + 151aa44 commit 085144d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/IO.Ably.Tests.Shared/Rest/PresenceSandboxSpecs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,16 @@ public PresenceSandboxSpecs(AblySandboxFixture fixture, ITestOutputHelper output
{
}

[Theory(Skip = "Keeps failing")]
[Theory]
[ProtocolData]
public async Task GetsChannelPresence(Protocol protocol)
{
var client = await GetRestClient(protocol);

var channel = client.Channels.Get(TestEnvironmentSettings.PresenceChannelName);
channel.Should().NotBeNull();

var presence = await channel.Presence.GetAsync();

presence.Items.Should().HaveCount(6);
}

Expand Down

0 comments on commit 085144d

Please sign in to comment.