fix tests

pull/1344/head
Audric Ackermann 5 years ago
parent d6ad2a1911
commit 0837ff5223
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -2524,7 +2524,7 @@
getAvatar() {
const url = this.getAvatarPath();
return url ? { url } : { url: null };
return { url: url || null };
},
getNotificationIcon() {

@ -129,12 +129,6 @@ describe('Conversation', () => {
assert.equal(convo.getNumber(), '');
});
it('has an avatar', () => {
const convo = new Whisper.ConversationCollection().add(attributes);
const avatar = convo.getAvatar();
assert.property(avatar, 'content');
});
describe('when set to private', () => {
it('correctly validates hex numbers', () => {
const regularId = new Whisper.Conversation({

Loading…
Cancel
Save