Remove test that causes nix build to fail

This commit is contained in:
Elnu 2023-08-17 18:39:21 -07:00
parent cccc18d704
commit a4f513703f

View file

@ -62,14 +62,4 @@ pub fn render(input: &str) -> Result<String> {
keyboard: serde_json::from_str(input)?,
};
Ok(document.render()?)
}
#[cfg(test)]
mod tests {
use super::render_file;
#[test]
fn render() {
render_file("layout.json", "output.svg").unwrap();
}
}