about summary refs log tree commit diff stats
path: root/js/scripting-lang/run_tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/run_tests.sh')
-rwxr-xr-xjs/scripting-lang/run_tests.sh11
1 files changed, 9 insertions, 2 deletions
diff --git a/js/scripting-lang/run_tests.sh b/js/scripting-lang/run_tests.sh
index 674d51a..1f6c848 100755
--- a/js/scripting-lang/run_tests.sh
+++ b/js/scripting-lang/run_tests.sh
@@ -22,11 +22,15 @@ run_test() {
     # Capture both stdout and stderr, and get the exit code
     local output
     local exit_code
-    output=$(node lang.js "$test_file" 2>&1)
+    output=$(DEBUG="$DEBUG" bun lang.js "$test_file" 2>&1)
     exit_code=$?
     
     if [ $exit_code -eq 0 ]; then
         echo -e "${GREEN}PASS${NC}"
+        # Show debug output if DEBUG is set
+        if [ -n "$DEBUG" ]; then
+            echo "$output"
+        fi
         return 0
     else
         echo -e "${RED}FAIL${NC}"
@@ -41,7 +45,7 @@ run_test_with_output() {
     local test_name=$2
     
     echo -e "${YELLOW}=== $test_name ===${NC}"
-    node lang.js "$test_file"
+    DEBUG="$DEBUG" bun lang.js "$test_file"
     echo ""
 }
 
@@ -75,6 +79,9 @@ unit_tests=(
     "tests/18_each_combinator.txt:Each Combinator"
     "tests/19_embedded_functions.txt:Embedded Functions"
     "tests/20_via_operator.txt:Via Operator"
+    "tests/21_enhanced_case_statements.txt:Enhanced Case Statements"
+    "tests/22_parser_limitations.txt:Parser Limitations"
+    "tests/23_minus_operator_spacing.txt:Minus Operator Spacing"
 )
 
 for test in "${unit_tests[@]}"; do