Skip to content

Commit 08eca2f

Browse files
authored
spacing
1 parent 7061c2c commit 08eca2f

File tree

1 file changed

+6
-6
lines changed
  • test/configCases/plugins/banner-plugin-hashing

1 file changed

+6
-6
lines changed

test/configCases/plugins/banner-plugin-hashing/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,35 +18,35 @@ const banner = parseBanner(source)
1818
const REGEXP_HASH = /^[A-Za-z0-9]{20}$/
1919

2020
it("should interpolate file hash in chunk banner", () => {
21-
REGEXP_HASH.test(banner["hash"]).should.be.true;
21+
REGEXP_HASH.test(banner["hash"]).should.be.true;
2222
});
2323

2424
it("should interpolate chunkHash in chunk banner", () => {
25-
REGEXP_HASH.test(banner["chunkhash"]).should.be.true;
25+
REGEXP_HASH.test(banner["chunkhash"]).should.be.true;
2626
});
2727

2828
it("should interpolate file into chunk banner", () => {
2929
banner["file"].should.equal("dist/banner.js");
3030
});
3131

3232
it("should interpolate name in chunk banner", () => {
33-
banner["name"].should.equal("dist/banner");
33+
banner["name"].should.equal("dist/banner");
3434
});
3535

3636
it("should interpolate basename in chunk banner", () => {
37-
banner["filebase"].should.equal("banner.js");
37+
banner["filebase"].should.equal("banner.js");
3838
});
3939

4040
it("should interpolate query in chunk banner", () => {
41-
banner["query"].should.equal("?value");
41+
banner["query"].should.equal("?value");
4242
});
4343

4444
it("should parse entry into file in chunk banner", () => {
4545
banner["file"].should.not.equal(banner["filebase"]);
4646
});
4747

4848
it("should parse entry into name in chunk banner", () => {
49-
banner["filebase"].should.not.equal(banner["name"]);
49+
banner["filebase"].should.not.equal(banner["name"]);
5050
});
5151

5252
require.include("./test.js");

0 commit comments

Comments
 (0)