Make earlier versions of jasmine happy by doing explicit object comparisons

pull/14/head
Kegan Dougal 2014-11-12 16:01:01 +00:00
parent 92ea45070c
commit 813125e122
1 changed files with 2 additions and 1 deletions

View File

@ -96,8 +96,9 @@ describe('RecentsService', function() {
recentsService.markAsRead(testEvent.room_id);
unread[testEvent.room_id] = 0;
bing[testEvent.room_id] = undefined;
expect(recentsService.getUnreadMessages()).toEqual(unread);
expect(recentsService.getUnreadBingMessages()).toEqual({});
expect(recentsService.getUnreadBingMessages()).toEqual(bing);
}));
it('should not add messages as unread if they are not live.', inject(