From 6dc666b3723c5f5c2dd460c1dd990e7bd5ffca3e Mon Sep 17 00:00:00 2001 From: Muhammad Hamza Date: Tue, 30 May 2023 20:50:12 +0500 Subject: [PATCH] Invalid wasm-bindgen config is handled by toml parser --- tests/all/manifest.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/all/manifest.rs b/tests/all/manifest.rs index abf0e75..27d2496 100644 --- a/tests/all/manifest.rs +++ b/tests/all/manifest.rs @@ -522,10 +522,7 @@ fn configure_wasm_bindgen_debug_incorrectly_is_error() { .arg("build") .arg("--dev") .assert() - .failure() - .stderr(predicates::str::contains( - "package.metadata.wasm-pack.profile.dev.wasm-bindgen.debug", - )); + .failure(); } #[test]