From 036927c1cd5a775c9b40dfa7d9e5fe7f8f9f1ab3 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Mon, 22 Aug 2022 22:16:48 -0700 Subject: [PATCH] fixup --- tests/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/index.js b/tests/index.js index deed562529..31573660ff 100644 --- a/tests/index.js +++ b/tests/index.js @@ -89,7 +89,7 @@ describe('rule documentation files have the correct content', () => { assert.ok(true, `includes ${expectedNotice} notice`); } else if (expectedNotice === 'configs') { // Check that the rule specifies its configs. - const configsOn = getConfigsForRule(ruleName); + const configsOn = getConfigsForRule(ruleName, true); let expectedMessage = `${MESSAGES.configs} ${configNamesToList(configsOn)}.`; const configsOff = getConfigsForRule(ruleName, false); if (configsOff.length > 0) {