mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 13:07:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			219 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			219 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import App from './App';
 | 
						|
import '../../test-matchers';
 | 
						|
 | 
						|
describe(`App component`, () => {
 | 
						|
  it(`should be a component`, () => {
 | 
						|
    // Arrange
 | 
						|
    // Act
 | 
						|
    expect(App).toBeVueComponent('App');
 | 
						|
    // Assert
 | 
						|
  });
 | 
						|
});
 |