From b6a749090d2231ab5fe598b094eef08e4ecfb2c4 Mon Sep 17 00:00:00 2001 From: Teddy Katz Date: Tue, 7 Nov 2017 17:24:17 -0500 Subject: [PATCH] Build: ensure fuzzer tests get run with `npm test` (#9590) --- Makefile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.js b/Makefile.js index 1dd5947c3b8..02363aa6641 100644 --- a/Makefile.js +++ b/Makefile.js @@ -102,7 +102,7 @@ function getTestFilePatterns() { initialValue.push(`"tests/lib/${currentValues}/**/*.js"`); } return initialValue; - }, ["tests/lib/rules/**/*.js", "tests/lib/*.js", "tests/bin/**/*.js", "tests/tools/**/*.js"]).join(" "); + }, ["\"tests/lib/rules/**/*.js\"", "\"tests/lib/*.js\"", "\"tests/bin/**/*.js\"", "\"tests/tools/**/*.js\""]).join(" "); } /**