From c08d1f513b3b8f0bacb941d88f3497beb1c8bdd8 Mon Sep 17 00:00:00 2001 From: Sid Vishnoi <8426945+sidvishnoi@users.noreply.github.com> Date: Sun, 7 Jul 2024 21:18:40 +0530 Subject: [PATCH] cleanup 1 --- tests/test-main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-main.js b/tests/test-main.js index a6b5e396de..54c2ac627c 100644 --- a/tests/test-main.js +++ b/tests/test-main.js @@ -3,7 +3,7 @@ // Get a list of all the test files to include const testFiles = Object.keys(window.__karma__.files) // ends with "-spec.js" - .filter(file => /unicode-spec\.js$/.test(file)); + .filter(file => /-spec\.js$/.test(file)); // Allows tests to be loaded asynchronously // TODO: Remove this when browsers add support for top level await