mirror of https://github.com/webpack/webpack.git
11 lines
243 B
JavaScript
11 lines
243 B
JavaScript
|
const path = require("path");
|
||
|
const { describeCases } = require("./ConfigTestCases.template");
|
||
|
|
||
|
describeCases({
|
||
|
name: "ConfigCacheTestCases",
|
||
|
cache: {
|
||
|
type: "filesystem",
|
||
|
managedPaths: [path.resolve(__dirname, "../node_modules")]
|
||
|
}
|
||
|
});
|