We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d99cc01 commit db397c1Copy full SHA for db397c1
Makefile
@@ -28,3 +28,11 @@ rebuild-track:
28
git commit -m "[$$version] rebuild php" || true; \
29
fi; \
30
done
31
+
32
+# Run tests in all libs
33
+.PHONY: test
34
+test:
35
+ @for dir in $(LIBS); do \
36
+ echo "Running tests in $$(basename $$dir)..."; \
37
+ (cd $$dir && npm test) || echo "Tests failed in $$(basename $$dir)"; \
38
+ done
0 commit comments