From 5262f9ec256d709e680da56268727c700e8cf54b Mon Sep 17 00:00:00 2001 From: Jeff Charles Date: Fri, 4 Mar 2022 11:35:37 -0500 Subject: [PATCH] Include quickjs-wasm-rs tests in Makefile --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 839fa70dc..cd1dd80f7 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,11 @@ docs: && cargo doc --open --target=wasm32-wasi \ && cd - +test-quickjs-wasm-rs: + cd crates/quickjs-wasm-rs \ + && cargo wasi test --features messagepack \ + && cd - + test-core: cd crates/core \ && cargo wasi test --features json-io -- --nocapture \ @@ -32,7 +37,7 @@ test-cli: core && cargo test --release \ && cd - -tests: test-core test-cli +tests: test-quickjs-wasm-rs test-core test-cli fmt: fmt-quickjs-wasm-sys fmt-quickjs-wasm-rs fmt-core fmt-cli