We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efa86ab commit b4acf9eCopy full SHA for b4acf9e
Makefile
@@ -1,2 +1,13 @@
1
-test::
+default: help
2
+
3
+test: ## Run tests
4
lein do clean, doo phantom test once
5
6
+.PHONY: help
7
8
+help:
9
+ @echo "usage: make target ..."
10
+ @echo "available targets:"
11
+ @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
12
+ | sort \
13
+ | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
README.md
@@ -84,6 +84,10 @@ Here's an example of what you''d get on creating a component
84
- `:events` are `id`s of the re-frame events you can dispatch
85
- `:events :refresh` needs to be implemented by the user
86
87
+## Running tests
88
89
+`make test` (requires phantomjs)
90
91
## License - Apache 2.0
92
93
Copyright 2017 Omnyway Inc.
0 commit comments