mirror of https://github.com/webpack/webpack.git
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
|
|
const { describeCases } = require("./TestCases.template");
|
||
|
|
|
||
|
|
describe("TestCases", () => {
|
||
|
|
describeCases({
|
||
|
|
name: "production with usedExports global",
|
||
|
|
mode: "production",
|
||
|
|
optimization: {
|
||
|
|
usedExports: "global",
|
||
|
|
minimize: false
|
||
|
|
}
|
||
|
|
});
|
||
|
|
});
|