diff --git a/makefile b/makefile new file mode 100644 index 0000000..18e2dd4 --- /dev/null +++ b/makefile @@ -0,0 +1,10 @@ +.PHONY: coverage +coverage: + echo "Running coverage tests" + yarn test -- --coverage --watchAll=false + open -a Firefox http://localhost:3000 + serve -s coverage/lcov-report + +.PHONY: branch-clean +branch-clean: + git fetch -p && git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -D \ No newline at end of file