mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			178 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			178 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { shouldBeUrl } from '../Validators';
 | 
						|
 | 
						|
describe('#shouldBeUrl', () => {
 | 
						|
  it('should return correct url', () => {
 | 
						|
    expect(shouldBeUrl('http')).toEqual(true);
 | 
						|
  });
 | 
						|
});
 |