From 06b9c9574d793d3385114b0232d2d58af7263aca Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Sat, 26 Apr 2025 23:36:38 -0400 Subject: [PATCH] Update create-test-boilerplate.js Co-authored-by: Dean <69436131+emdeann@users.noreply.github.com> --- create-test-boilerplate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-test-boilerplate.js b/create-test-boilerplate.js index 025ede632fd..0eb20e2fbcc 100644 --- a/create-test-boilerplate.js +++ b/create-test-boilerplate.js @@ -75,7 +75,7 @@ async function runInteractive() { // Ex: "Cud Chew/Cud-Chew" --> "cud-chew" const fileName = fileNameAnswer.userInput .replace(/([a-z])([A-Z])/g, "$1-$2") // Convert camelCase to kebab-case - .replace(/\s+/g, "-") // Replace spaces with underscores + .replace(/\s+/g, "-") // Replace spaces with dashes .toLowerCase(); // Ensure all lowercase // Get proper english name for test names and data name for abilities/moves