-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Port legacy tests to Swift #629
Conversation
BTW, why is |
@ricardopereira I think because it's covered elsewhere, i.e. https://docs.ably.io/client-lib-development-guide/features/#RSA2 and https://docs.ably.io/client-lib-development-guide/features/#RSA11 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, couple of comments.
@@ -20,6 +20,20 @@ | |||
ReferencedContainer = "container:Ably.xcodeproj"> | |||
</BuildableReference> | |||
</BuildActionEntry> | |||
<BuildActionEntry |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We might as well just delete them, no?
Spec/RealtimeClientPresence.swift
Outdated
expect(error).to(beNil()) | ||
partialDone() | ||
} | ||
channel.presence.subscribe { message in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this subscription be done before the enterClient
s, so that we make sure we don't miss them?
@tcard @ricardopereira I was hoping porting these tests would result in a green build. What's the issue that is preventing a green build then? |
#627