summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-11-10 15:41:35 -0300
committerEuAndreh <eu@euandre.org>2023-11-10 15:41:38 -0300
commitd6d3bd0ac13b9d3137218e6a8f1e242ce8b79b03 (patch)
treecbab6c1934c2631ae019eeec8fcd1108ac68efeb /Makefile
parenttests/js/utils.js: Remove test on "new Date()" objects (diff)
downloadpapod-d6d3bd0ac13b9d3137218e6a8f1e242ce8b79b03.tar.gz
papod-d6d3bd0ac13b9d3137218e6a8f1e242ce8b79b03.tar.xz
tests/js/: Run the files directly
Instead of dynamically `import()`ing them in `tests/runner.js`, make each test file instead load `tests/runner.js` and run its own tests.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2ca99c4..200253a 100644
--- a/Makefile
+++ b/Makefile
@@ -81,7 +81,7 @@ src/index.js:
.SUFFIXES: .js .js-t
tests.js-t = $(tests.js:.js=.js-t)
$(tests.js-t):
- node tests/runner.js $*.js
+ node $*.js
check-t: $(tests.js-t)