From 0d6e499cc988774e63ce83fa620cc07ea6c5c42f Mon Sep 17 00:00:00 2001 From: 10x Developer Date: Sun, 3 May 2026 17:59:46 +0200 Subject: [PATCH] Fix test run script to call correct test runner Deleted simple-test-runner.js and updated run-tests.sh to call test-current.js instead of the non-existent test-harness.js --- run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.sh b/run-tests.sh index a308fa1..a7210d1 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -2,4 +2,4 @@ # Simple script to run all compiler tests echo "Running all tests..." -node test-harness.js \ No newline at end of file +node test-current.js \ No newline at end of file