From 9491d549a0ca2defbcf70873752bc85ddaaa60c5 Mon Sep 17 00:00:00 2001 From: Ashley Williams Date: Mon, 14 Jan 2019 19:27:15 -0500 Subject: [PATCH] feat(test): remove windows output fmting test --- tests/all/build.rs | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/tests/all/build.rs b/tests/all/build.rs index 7d06f15..cc21fbb 100644 --- a/tests/all/build.rs +++ b/tests/all/build.rs @@ -228,23 +228,3 @@ fn build_with_and_without_wasm_bindgen_debug() { ); } } - -#[cfg(target_os = "windows")] -#[test] -fn it_format_out_dir_on_windows() { - let fixture = utils::fixture::js_hello_world(); - fixture.install_local_wasm_bindgen(); - let cli = Cli::from_iter_safe(vec![ - "wasm-pack", - "build", - &fixture.path.display().to_string(), - ]) - .unwrap(); - fixture.run(cli.cmd).unwrap(); - - let wasm_pack_log = utils::file::read_file(&fixture.path.join("wasm-pack.log")).unwrap(); - assert!( - wasm_pack_log.contains(r"Your wasm pkg is ready to publish at C:\"), - "directories in wasm-pack.log should be well formatted", - ); -}