mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			9 lines
		
	
	
		
			309 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			309 B
		
	
	
	
		
			JavaScript
		
	
	
	
it("should have __webpack_hash__", function() {
 | 
						|
	expect(__webpack_hash__).toBeTypeOf("string");
 | 
						|
	expect(__webpack_hash__).toMatch(/^[0-9a-f]{20}$/);
 | 
						|
});
 | 
						|
it("should have __webpack_chunkname__", function() {
 | 
						|
	expect(__webpack_chunkname__).toBeTypeOf("string");
 | 
						|
	expect(__webpack_chunkname__).toBe("other");
 | 
						|
});
 |