jrest 0.1.0

The equivalent of Jest for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
test:
	cargo test --no-fail-fast
test-cover:
	cargo tarpaulin --frozen --no-fail-fast --out Xml --release --skip-clean
test-trace:
	export RUST_BACKTRACE=1 && cargo test --no-fail-fast -- --nocapture
test-watch:
	cargo watch -x "test -- --nocapture"

upgrade:
	cargo upgrade