From 3fc919626ef6a00e35bb6b559b60a1e89cf6ca1a Mon Sep 17 00:00:00 2001 From: Milos Djermanovic Date: Wed, 16 Feb 2022 02:26:39 +0100 Subject: [PATCH] chore: include `tests/conf` in test runs (#15610) --- Makefile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.js b/Makefile.js index 83c6d4095de..54ef7060675 100644 --- a/Makefile.js +++ b/Makefile.js @@ -73,7 +73,7 @@ const NODE = "node ", // intentional extra space JSON_FILES = find("conf/").filter(fileType("json")), MARKDOWNLINT_IGNORED_FILES = fs.readFileSync(path.join(__dirname, ".markdownlintignore"), "utf-8").split("\n"), MARKDOWN_FILES_ARRAY = find("docs/").concat(ls(".")).filter(fileType("md")).filter(file => !MARKDOWNLINT_IGNORED_FILES.includes(file)), - TEST_FILES = "\"tests/{bin,lib,tools}/**/*.js\"", + TEST_FILES = "\"tests/{bin,conf,lib,tools}/**/*.js\"", PERF_ESLINTRC = path.join(PERF_TMP_DIR, "eslintrc.yml"), PERF_MULTIFILES_TARGET_DIR = path.join(PERF_TMP_DIR, "eslint"), PERF_MULTIFILES_TARGETS = `"${PERF_MULTIFILES_TARGET_DIR + path.sep}{lib,tests${path.sep}lib}${path.sep}**${path.sep}*.js"`,