diff options
Diffstat (limited to 'js/scripting-lang/run_tests.sh')
-rwxr-xr-x | js/scripting-lang/run_tests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/scripting-lang/run_tests.sh b/js/scripting-lang/run_tests.sh index aac26c4..1f6c848 100755 --- a/js/scripting-lang/run_tests.sh +++ b/js/scripting-lang/run_tests.sh @@ -22,7 +22,7 @@ run_test() { # Capture both stdout and stderr, and get the exit code local output local exit_code - output=$(DEBUG="$DEBUG" 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 @@ -45,7 +45,7 @@ run_test_with_output() { local test_name=$2 echo -e "${YELLOW}=== $test_name ===${NC}" - DEBUG="$DEBUG" node lang.js "$test_file" + DEBUG="$DEBUG" bun lang.js "$test_file" echo "" } |