Catch server output

This commit is contained in:
Pierre Hubert 2022-12-19 14:05:16 +01:00
parent 9b13ce1dd3
commit 47f58820d9
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@ use crate::server::utils::{get_free_port, wait_for_port};
use mktemp::Temp;
use std::error::Error;
use std::io::{Cursor, Read};
use std::process::Child;
use std::process::{Child, Stdio};
use zip::ZipArchive;
pub struct EmbeddedServer {
@ -49,6 +49,7 @@ impl EmbeddedServer {
.arg(server_file)
.arg("-p")
.arg(port.to_string())
.stdout(Stdio::null())
.spawn()?;
wait_for_port(port)?;