mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			295 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			295 B
		
	
	
	
		
			JavaScript
		
	
	
	
| "use strict";
 | |
| 
 | |
| const NullDependency = require("../lib/dependencies/NullDependency");
 | |
| 
 | |
| describe("NullDependency", () => {
 | |
| 	describe("when created", () => {
 | |
| 		it("has a null type", () => {
 | |
| 			const nullDependency = new NullDependency();
 | |
| 			expect(nullDependency.type).toBe("null");
 | |
| 		});
 | |
| 	});
 | |
| });
 |