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