From 1af36b5e6dab203756fe448ee08a8f9c6ba1fa44 Mon Sep 17 00:00:00 2001 From: Patrick McCann Date: Thu, 18 Jun 2026 04:46:04 -0400 Subject: [PATCH] Apply suggested fix to test/test_index.js from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- test/test_index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_index.js b/test/test_index.js index caa7554..06421f4 100644 --- a/test/test_index.js +++ b/test/test_index.js @@ -1,2 +1,2 @@ -var testsContext = require.context('.', true, /_spec$/); +var testsContext = require.context('.', true, /_spec\.js$/); testsContext.keys().forEach(testsContext);