fix unit tests: remove not used count in scrolldown view and assert svg
presentpull/750/head
parent
310038ec31
commit
6c2aefbe11
@ -1,35 +1,12 @@
|
||||
/* global Whisper */
|
||||
|
||||
describe('ScrollDownButtonView', () => {
|
||||
it('renders with count = 0', () => {
|
||||
it('renders ', () => {
|
||||
const view = new Whisper.ScrollDownButtonView();
|
||||
view.render();
|
||||
assert.equal(view.count, 0);
|
||||
assert.match(view.$el.html(), /Scroll to bottom/);
|
||||
});
|
||||
|
||||
it('renders with count = 1', () => {
|
||||
const view = new Whisper.ScrollDownButtonView({ count: 1 });
|
||||
view.render();
|
||||
assert.equal(view.count, 1);
|
||||
assert.match(view.$el.html(), /New message below/);
|
||||
});
|
||||
|
||||
it('renders with count = 2', () => {
|
||||
const view = new Whisper.ScrollDownButtonView({ count: 2 });
|
||||
view.render();
|
||||
assert.equal(view.count, 2);
|
||||
|
||||
assert.match(view.$el.html(), /New messages below/);
|
||||
});
|
||||
|
||||
it('increments count and re-renders', () => {
|
||||
const view = new Whisper.ScrollDownButtonView();
|
||||
view.render();
|
||||
assert.equal(view.count, 0);
|
||||
assert.notMatch(view.$el.html(), /New message below/);
|
||||
view.increment(1);
|
||||
assert.equal(view.count, 1);
|
||||
assert.match(view.$el.html(), /New message below/);
|
||||
assert.match(
|
||||
view.$el.html(),
|
||||
/<div class="session-icon-button huge" role="button"><svg /
|
||||
);
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue