mirror of https://github.com/webpack/webpack.git
11 lines
356 B
JavaScript
11 lines
356 B
JavaScript
|
it("should ignore case insenstive 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");
|
||
|
}
|
||
|
));
|