Skip to content

Commit 195109a

Browse files
committed
chore: fix linting
1 parent 2510c6e commit 195109a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/rollup-plugin-html/test/rollup-plugin-html.test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1073,6 +1073,7 @@ describe('rollup-plugin-html', () => {
10731073
expect(fontBold).to.exist;
10741074
expect(fontNormal).to.exist;
10751075
// e.g. "font-normal-f0mNRiTD.woff2"
1076+
// eslint-disable-next-line no-useless-escape
10761077
const regex = /assets[\/\\]font-normal-\w+\.woff2/;
10771078
// It outputs the font to the assets folder
10781079
expect(regex.test(fontNormal!.fileName)).to.equal(true);
@@ -1112,6 +1113,7 @@ describe('rollup-plugin-html', () => {
11121113
// It has emitted the font
11131114
expect(font).to.exist;
11141115
// e.g. "font-normal-f0mNRiTD.woff2"
1116+
// eslint-disable-next-line no-useless-escape
11151117
const regex = /assets[\/\\]font-normal-\w+\.woff2/;
11161118
// It outputs the font to the assets folder
11171119
expect(regex.test(font!.fileName)).to.equal(true);

0 commit comments

Comments
 (0)