jrest 0.1.1

The equivalent of Jest for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
doc:
	cargo doc && firefox ./target/doc/jrest/index.html

test:
	cargo test --no-fail-fast
test-cover:
	cargo tarpaulin --frozen --no-fail-fast --out Xml --skip-clean
test-trace:
	export RUST_BACKTRACE=1 && cargo test --no-fail-fast -- --nocapture
test-watch:
	cargo watch -x "test -- --nocapture"

upgrade:
	cargo upgrade