You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
describe('InboxView', function() {
 | 
						|
  let inboxView;
 | 
						|
  let conversation;
 | 
						|
 | 
						|
  before(() => {
 | 
						|
    inboxView = new Whisper.InboxView({
 | 
						|
      model: {},
 | 
						|
      window: window,
 | 
						|
      initialLoadComplete: function() {},
 | 
						|
    }).render();
 | 
						|
 | 
						|
    conversation = new Whisper.Conversation({
 | 
						|
      id: '1234',
 | 
						|
      type: 'private',
 | 
						|
    });
 | 
						|
  });
 | 
						|
 | 
						|
  describe('the conversation stack', function() {
 | 
						|
    it('should be rendered', function() {
 | 
						|
      assert.ok(inboxView.$('.conversation-stack').length === 1);
 | 
						|
    });
 | 
						|
 | 
						|
    describe('opening a conversation', function() {
 | 
						|
      var triggeredOpenedCount = 0;
 | 
						|
 | 
						|
      before(function() {
 | 
						|
        conversation.on('opened', function() {
 | 
						|
          triggeredOpenedCount++;
 | 
						|
        });
 | 
						|
 | 
						|
        inboxView.conversation_stack.open(conversation);
 | 
						|
      });
 | 
						|
 | 
						|
      it('should trigger an opened event', function() {
 | 
						|
        assert.ok(triggeredOpenedCount === 1);
 | 
						|
      });
 | 
						|
 | 
						|
      describe('and then opening it again immediately', function() {
 | 
						|
        before(function() {
 | 
						|
          inboxView.conversation_stack.open(conversation);
 | 
						|
        });
 | 
						|
 | 
						|
        it('should trigger the opened event again', function() {
 | 
						|
          assert.ok(triggeredOpenedCount === 2);
 | 
						|
        });
 | 
						|
      });
 | 
						|
    });
 | 
						|
  });
 | 
						|
});
 |