From 0fcc8747c9bf86a59c4dfd6a7c4ff7fd24159830 Mon Sep 17 00:00:00 2001 From: Zixuan Chen Date: Wed, 23 Nov 2022 20:02:45 +0800 Subject: [PATCH] ci: make test running concurrently --- deno.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deno.json b/deno.json index 1be2b4f7..76b616c8 100644 --- a/deno.json +++ b/deno.json @@ -1,7 +1,7 @@ { "tasks": { "build": "cargo build", - "test": "RUST_BACKTRACE=full cargo nextest run --features=test_utils && deno task test-wasm", + "test": "RUST_BACKTRACE=full cargo nextest run --features=test_utils & deno task test-wasm", "test-all": "deno task test & deno task quick-fuzz", "test-prop": "RUSTFLAGS='--cfg=proptest' cargo nextest run --features=test_utils", "test-wasm": "cd crates/loro-wasm && deno task build && deno task test",