texlab 4.3.2

LaTeX Language Server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use anyhow::Result;
use insta::assert_debug_snapshot;
use texlab::Options;

#[test]
fn issue_707() -> Result<()> {
    assert_debug_snapshot!(
        serde_json::from_value::<Option<Options>>(serde_json::json!({}))?.unwrap_or_default()
    );

    Ok(())
}