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.
		
		
		
		
		
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			712 B
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			27 lines
		
	
	
		
			712 B
		
	
	
	
		
			JavaScript
		
	
'use strict';
 | 
						|
 | 
						|
describe('Fixtures', function() {
 | 
						|
  before(function() {
 | 
						|
    // NetworkStatusView checks this method every five seconds while showing
 | 
						|
    window.getSocketStatus = function() {
 | 
						|
      return WebSocket.OPEN;
 | 
						|
    };
 | 
						|
  });
 | 
						|
 | 
						|
  it('renders', async () => {
 | 
						|
    await Whisper.Fixtures().saveAll();
 | 
						|
 | 
						|
    ConversationController.reset();
 | 
						|
    await ConversationController.load();
 | 
						|
 | 
						|
    var view = new Whisper.InboxView({ window: window });
 | 
						|
    view.onEmpty();
 | 
						|
    view.$el.prependTo($('#render-light-theme'));
 | 
						|
 | 
						|
    var view = new Whisper.InboxView({ window: window });
 | 
						|
    view.$el.removeClass('light-theme').addClass('dark-theme');
 | 
						|
    view.onEmpty();
 | 
						|
    view.$el.prependTo($('#render-dark-theme'));
 | 
						|
  });
 | 
						|
});
 |