mirror of https://github.com/webpack/webpack.git
18 lines
362 B
JavaScript
18 lines
362 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,
|
|
concatenateModules: true
|
|
}
|
|
});
|
|
});
|