From a8da6c5586ae8a69f2699b0e6844a86cbf78d9d2 Mon Sep 17 00:00:00 2001 From: David Anson Date: Wed, 7 Aug 2024 21:20:23 -0700 Subject: [PATCH] Update test repo snapshots. --- test/markdownlint-test-repos-small.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/markdownlint-test-repos-small.js b/test/markdownlint-test-repos-small.js index e622a4ac..812a3979 100644 --- a/test/markdownlint-test-repos-small.js +++ b/test/markdownlint-test-repos-small.js @@ -59,7 +59,11 @@ test("https://github.com/mochajs/mocha", (t) => { join(rootDir, ".github/*.md"), join(rootDir, "lib/**/*.md"), join(rootDir, "test/**/*.md"), - join(rootDir, "example/**/*.md") + join(rootDir, "example/**/*.md"), + ...excludeGlobs( + rootDir, + "CHANGELOG.md" + ) ]; const configPath = join(rootDir, ".markdownlint.json"); return lintTestRepo(t, globPatterns, configPath);