We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e488cf commit 5d343efCopy full SHA for 5d343ef
spec/APNS.spec.js
@@ -166,6 +166,7 @@ describe('APNS', () => {
166
'content-available': 1,
167
'mutable-content': 1,
168
'category': 'INVITE_CATEGORY',
169
+ 'threadId': 'a-thread-id',
170
'key': 'value',
171
'keyAgain': 'valueAgain'
172
};
@@ -180,6 +181,7 @@ describe('APNS', () => {
180
181
expect(notification.aps['content-available']).toEqual(1);
182
expect(notification.aps['mutable-content']).toEqual(1);
183
expect(notification.aps.category).toEqual(data.category);
184
+ expect(notification.aps.threadId).toEqual(data.threadId);
185
expect(notification.payload).toEqual({
186
187
0 commit comments