aboutsummaryrefslogtreecommitdiff
path: root/ports/javascript
diff options
context:
space:
mode:
authorDamien George2021-03-11 16:09:27 +1100
committerDamien George2021-03-12 19:56:09 +1100
commit6129b8e401c36cc68e0f7ba8180da27a40d17621 (patch)
treef9922a1f34db804d3700ca0570827c2a8762314e /ports/javascript
parentb24fcd7aec4b34064e9d9016d417d4ca3cc925cc (diff)
tests: Rename run-tests to run-tests.py for consistency.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'ports/javascript')
-rw-r--r--ports/javascript/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/javascript/Makefile b/ports/javascript/Makefile
index 4f9dd444b..3962e93f5 100644
--- a/ports/javascript/Makefile
+++ b/ports/javascript/Makefile
@@ -63,8 +63,8 @@ $(BUILD)/micropython.js: $(OBJ) library.js wrapper.js
min: $(BUILD)/micropython.js
uglifyjs $< -c -o $(BUILD)/micropython.min.js
-test: $(BUILD)/micropython.js $(TOP)/tests/run-tests
+test: $(BUILD)/micropython.js $(TOP)/tests/run-tests.py
$(eval DIRNAME=ports/$(notdir $(CURDIR)))
- cd $(TOP)/tests && MICROPY_MICROPYTHON=../ports/javascript/node_run.sh ./run-tests
+ cd $(TOP)/tests && MICROPY_MICROPYTHON=../ports/javascript/node_run.sh ./run-tests.py
include $(TOP)/py/mkrules.mk