mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-30 21:30:59 +01:00
25 lines
718 B
JavaScript
25 lines
718 B
JavaScript
/* global Whisper */
|
|
|
|
describe('GroupUpdateView', () => {
|
|
it('should show new group members', () => {
|
|
const view = new Whisper.GroupUpdateView({
|
|
model: { joined: ['Alice', 'Bob'] },
|
|
}).render();
|
|
assert.match(view.$el.text(), /Alice.*Bob.*joined the group/);
|
|
});
|
|
|
|
it('should note updates to the title', () => {
|
|
const view = new Whisper.GroupUpdateView({
|
|
model: { name: 'New name' },
|
|
}).render();
|
|
assert.match(view.$el.text(), /Title is now 'New name'/);
|
|
});
|
|
|
|
it('should say "Updated the group"', () => {
|
|
const view = new Whisper.GroupUpdateView({
|
|
model: { avatar: 'New avatar' },
|
|
}).render();
|
|
assert.match(view.$el.text(), /Updated the group/);
|
|
});
|
|
});
|