Skip to content

Commit d4c47c3

Browse files
authored
test: avoid empty config warning in test output (#19408)
1 parent e89a54a commit d4c47c3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = [];
1+
module.exports = [{}];
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = [];
1+
module.exports = [{}];

tests/lib/eslint/eslint.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4543,7 +4543,7 @@ describe("ESLint", () => {
45434543
"b.js": "",
45444544
"ab.js": "",
45454545
"[ab].js": "",
4546-
"eslint.config.js": "module.exports = [];"
4546+
"eslint.config.js": "module.exports = [{}];"
45474547
}
45484548
});
45494549

@@ -4564,7 +4564,7 @@ describe("ESLint", () => {
45644564
"a.js": "",
45654565
"b.js": "",
45664566
"ab.js": "",
4567-
"eslint.config.js": "module.exports = [];"
4567+
"eslint.config.js": "module.exports = [{}];"
45684568
}
45694569
});
45704570

0 commit comments

Comments
 (0)