mirror of https://github.com/webpack/webpack.git
12 lines
193 B
JavaScript
12 lines
193 B
JavaScript
|
const { describeCases } = require("./TestCases.template");
|
||
|
|
||
|
describe("TestCases", () => {
|
||
|
describeCases({
|
||
|
name: "cache pack",
|
||
|
cache: {
|
||
|
type: "filesystem",
|
||
|
store: "pack"
|
||
|
}
|
||
|
});
|
||
|
});
|