mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			333 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			333 B
		
	
	
	
		
			JavaScript
		
	
	
	
| const path = require("path");
 | |
| const { describeCases } = require("./TestCases.template");
 | |
| 
 | |
| describe("TestCases", () => {
 | |
| 	describeCases({
 | |
| 		name: "cache pack",
 | |
| 		cache: {
 | |
| 			type: "filesystem",
 | |
| 			managedPaths: [path.resolve(__dirname, "../node_modules")]
 | |
| 		},
 | |
| 		optimization: {
 | |
| 			innerGraph: true,
 | |
| 			usedExports: true
 | |
| 		}
 | |
| 	});
 | |
| });
 |