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.
		
		
		
		
		
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			582 B
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			20 lines
		
	
	
		
			582 B
		
	
	
	
		
			JavaScript
		
	
| 'use strict';
 | |
| 
 | |
| describe("Fixtures", function() {
 | |
|   before(function(done) {
 | |
|     Whisper.Fixtures.saveAll().then(function() {
 | |
|       done();
 | |
|     });
 | |
|   });
 | |
|   it('renders', function(done) {
 | |
|     ConversationController.updateInbox().then(function() {
 | |
|       var view = new Whisper.InboxView({appWindow: {contentWindow: window}});
 | |
|       view.$el.prependTo($('#render-android'));
 | |
| 
 | |
|       var view = new Whisper.InboxView({appWindow: {contentWindow: window}});
 | |
|       view.$el.removeClass('android').addClass('ios');
 | |
|       view.$el.prependTo($('#render-ios'));
 | |
|     }).then(done,done);
 | |
|   });
 | |
| });
 |