We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5bda22 commit 8664f54Copy full SHA for 8664f54
test/configCases/plugins/banner-plugin-hashing/index.js
@@ -20,10 +20,18 @@ it("should interpolate file hash in bundle0 chunk", () => {
20
banner["hash"].should.not.equal("[hash]");
21
});
22
23
+it("should interpolate file hash in bundle0 chunk and respect size limit", () => {
24
+ banner["hash"].length.should.equal(10);
25
+});
26
+
27
it("should interpolate chunkHash in bundle0 chunk", () => {
28
banner["chunkhash"].should.not.equal("[chunkhash]");
29
30
31
+it("should interpolate chunkHash in bundle0 chunk and respect size limit", () => {
32
+ banner["chunkhash"].length.should.equal(10);
33
34
35
it("should interpolate name in bundle0 chunk", () => {
36
banner["name"].should.not.equal("[name]");
37
0 commit comments