loro/deno.jsonc

16 lines
783 B
Text
Raw Normal View History

2022-11-21 04:50:15 +00:00
{
"tasks": {
"build": "cargo build",
// to debug a single test use
// RUST_BACKTRACE=full DEBUG=* cargo test --package loro-internal --lib --features test_utils --features wasm -- fuzz::recursive::failed_tests::unknown --exact --nocapture &> debug.log
"test": "RUST_BACKTRACE=full cargo nextest run --features=test_utils",
"test-all": "deno task test & deno task quick-fuzz & deno task test-wasm",
2022-11-21 04:50:15 +00:00
"test-prop": "RUSTFLAGS='--cfg=proptest' cargo nextest run --features=test_utils",
"test-wasm": "cd crates/loro-wasm && deno task dev web && deno task test",
2022-11-21 04:50:15 +00:00
"check": "cargo clippy --all-features",
"quick-fuzz": "cd crates/loro-internal && deno task quick-fuzz",
2022-11-21 04:50:15 +00:00
"fix": "cargo clippy --fix --features=test_utils",
"vet": "cargo vet"
}
}