mirror of https://github.com/webpack/webpack.git
11 lines
357 B
JavaScript
11 lines
357 B
JavaScript
it("should ignore case insensitive chars when generating maxSize filenames", () =>
|
|
import(/* webpackChunkName: "chunk" */ "./chunk").then(
|
|
({ default: value }) => {
|
|
expect(value).toContain("a111");
|
|
expect(value).toContain("b111");
|
|
expect(value).toContain("A222");
|
|
expect(value).toContain("B222");
|
|
expect(value).toContain("cccc");
|
|
}
|
|
));
|