Skip to content

Commit 1698230

Browse files
test: fix
1 parent 48b1b0c commit 1698230

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

test/config-for-tests/eslint.config.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
import globals from "globals";
12
import { defineConfig } from "eslint/config";
23

34
export default defineConfig({
5+
languageOptions: {
6+
globals: {
7+
...globals.node,
8+
},
9+
},
410
rules: {
511
"no-console": "warn",
612

test/utils.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jest.mock("fs", () => ({
1010
},
1111
}));
1212

13-
describe("utils test", () => {
13+
describe("utils", () => {
1414
it("parseFiles should return relative files from context", () => {
1515
expect(
1616
parseFiles(

0 commit comments

Comments
 (0)