mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
feat(tools): create a bash testing script (#57218)
This commit is contained in:
Executable
+14
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
|
||||
echo "Enter the ids of the challenges you wish to test (separated by commas) and hit enter."
|
||||
read -r input
|
||||
|
||||
|
||||
IFS=',' challengeIDS=($input)
|
||||
|
||||
for challengeID in "${challengeIDS[@]}";
|
||||
do
|
||||
challengeID="$(tr -d ' ' <<< "$challengeID")"
|
||||
FCC_CHALLENGE_ID=$challengeID pnpm run test:curriculum
|
||||
done
|
||||
Reference in New Issue
Block a user